/* Archivo: style/style.css */

.neostone-showroom-container {
  padding: 2rem;
  background-color: #f9f9f9;
  max-width: 1200px;
  margin: 0 auto;
}

.neostone-showroom-search {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
}

.neostone-showroom-search input {
  padding: 10px 15px;
  width: 100%;
  max-width: 500px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
  outline: none;
  box-shadow: 0 0 4px rgba(0,0,0,0.05);
}

.neostone-showroom-menu {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 10px;
  background-color: #333;
  color: white;
  padding: 0;
  list-style: none;
  border-radius: 5px;
  overflow: hidden;
  width: 200px;
  display: none;
  z-index: 100;
}

.neostone-showroom-menu.active {
  display: block;
}

.neostone-showroom-menu li {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #444;
}

.neostone-showroom-menu li:hover {
  background-color: #444;
}

.neostone-showroom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.neostone-showroom-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.neostone-showroom-card:hover {
  transform: translateY(-5px);
}

.neostone-showroom-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.neostone-showroom-card .card-content {
  padding: 1rem;
}

.neostone-showroom-card h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
  font-weight: bold;
}

.neostone-showroom-card p {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
}

.neostone-search-container {
  display: flex;
  align-items: center;
  background-color: transparent;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.neostone-search-menu {
  font-size: 24px;
  background-color: #444 !important;
  color: white !important;
  border: none !important;
  padding: 8px 10px;
  cursor: pointer;
  flex-shrink: 0; /* evita que se achique */
  display: flex;
  align-items: center;
  justify-content: center;
}

.neostone-input-wrapper {
  position: relative;
  flex: 1;
}

.neostone-search-input {
  width: 100%;
  padding: 10px 35px 10px 10px; /* espacio a la derecha para la lupa */
  font-size: 16px;
  border: none;
  background-color: #f9f9f9;
  color: #333;
  border-radius: 0 !important;
}

.neostone-search-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
  opacity: 0.7;
}


