@media (min-width: 800px) {
  .dropdown-menu {
  left:0;

  }

  .navbar {
    height: 13dvh;
    align-items: center;
  }

  a {
    font-size: 1.5rem;
    color: #f5f5f5;
    font-weight: 500;
    transition: 0.3s;
  }
  a:hover {
    text-decoration: underline;
  }
  .site-logo {
    width: 5dvw;
  }

  .back-to-top {
  position: fixed;
  display: none;
  right: 70px;
  bottom: 30px;
  z-index: 11;
  animation: action 1s infinite alternate;
  width: 16vw;
}

  /* Centrar el logo */
  .nav-3 {
    color: #9e9e9e; 
    font-size: 1.5rem;
    margin-left: 10dvw;
   
  }
  .nav-3:hover {
    color: rgb(0, 0, 0);
    scale: 1.15;

    transition: all 0.5s ease;
  }
  .logo-container {
    left: 75vw;
    transform: translateX(-50%);
  }

  .nav-left {
    display: flex;
    align-items: center;
  }

  .nav-right {
    display: flex;
    align-items: center;
  }

  /* Estilos para el formulario de reclamos */
  .dynamic-section {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid #d8b130;
  }
  .sub-section {
    margin-top: 15px;
    padding: 15px;
    background-color: white;
    border-radius: 5px;
    border: 1px solid #dee2e6;
  }
  .required-field::after {
    content: " *";
    color: #dc3545;
  }

  .checkbox-group,
  .radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
  }
  .checkbox-item,
  .radio-item {
    display: flex;
    align-items: center;
  }
  .checkbox-item input,
  .radio-item input {
    width: auto;
    margin-right: 8px;
  }
  .promotion-card {
    width: 100% !important; /* Ocupa todo el ancho de la celda grid */
    max-width: 350px; /* Máximo ancho pero flexible */
  border-radius: 8px;
  display: grid;
  grid-template-columns: 30% 70%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 250px;
  padding: 10px;
  border-right: #f6ff00 outset 2px;
  border-bottom: #f6ff00 outset 2px;
  border-top: #0000005b inset 2px;
  border-left: #00005b inset 2px;

  }
  /* Promotion Cards */
  .promotion-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columnas iguales */
  }
  .category-button.active {
  color: #000000;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.mokador-btn {
  background-image: url('../img/mokador.jpg'); /* Cambia esta ruta por la de tu imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white; /* Para que el texto sea visible sobre el fondo */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); /* Sombra para mejor legibilidad */
  border: none; /* Quitar borde si es necesario */
  }
  .mokador-btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
  transition: all 0.3s ease;
}
.mokador-btn.active {
  border: 2px solid gold; /* O el color que prefieras */
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
/* Estilo para la barra de categorías */
.category-buttons-container {
  position: relative;
  z-index: 10;
  top:5vh;
  background-color: rgb(255, 255, 255);
  padding: 8px 0;
  box-shadow: 0 3px 8px rgba(209, 209, 9, 0.1);
}

.product-offer {
  width: 100%;
  height: 25dvh;
  border-radius: 10px;
  overflow: hidden;
}

}