.search-container {
  padding: 20px 0;
}

.product-card {
  margin-bottom: 20px;
  transition: transform 0.3s;
}

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

.category-filter {
  margin-bottom: 20px;
}

.product-image {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-image {
  max-height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}

.thumbnail {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  margin: 5px;
}

.thumbnail:hover {
  opacity: 0.8;
}

admin :root {
  --primary-color: #00ff88;
  --secondary-color: #00ccff;
  --dark-bg: #1a1a1a;
  --darker-bg: #0f0f0f;
  --light-text: #ffffff;
  --gray-text: #b3b3b3;
  --card-bg: #2a2a2a;
}

body {
  background: var(--dark-bg);
  color: var(--light-text);
  font-family: "Inter", sans-serif;
}

/* Sidebar Styles */
.sidebar {
  background: var(--darker-bg);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.sidebar-brand {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 1.5rem;
  text-align: center;
}

.sidebar-link {
  color: var(--gray-text);
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.sidebar-link:hover, .sidebar-link.active {
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary-color);
  border-left: 3px solid var(--primary-color);
}

/* Content Area */
.content {
  background: var(--dark-bg);
  min-height: 100vh;
}

/* Cards */
.stat-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.stat-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Tables */
.table {
  color: var(--light-text);
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
}

.table th {
  background: var(--darker-bg);
  border-color: rgba(255, 255, 255, 0.1);
}

.table td {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn-neon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  color: var(--darker-bg);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

/* Forms */
.form-control {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-text);
}

.form-control:focus {
  background: var(--card-bg);
  border-color: var(--primary-color);
  color: var(--light-text);
  box-shadow: 0 0 0 0.25rem rgba(0, 255, 136, 0.25);
}

/* Media Queries */
@media (max-width: 768px) {
  .sidebar {
    width: 70px;
  }
  .content {
    margin-left: 70px;
  }
  .sidebar-link span {
    display: none;
  }
  .sidebar-brand {
    font-size: 1.2rem;
    padding: 1rem;
  }
}
body {
  font-family: "Roboto", sans-serif;
  background-color: #f8f9fa;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-top: 20px;
}

.carousel-item img {
  width: 100%;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #f8f9fa;
}

.thumbnail-container {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  overflow-x: auto;
  padding: 10px 0;
}

.thumbnail {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #dee2e6;
  border-radius: 5px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.thumbnail:hover {
  border-color: #0d6efd;
}

.product-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 1rem 0;
}

.product-description {
  color: #666;
  line-height: 1.6;
  margin: 1rem 0;
}

.badge {
  font-size: 0.9rem;
  padding: 8px 15px;
  margin-right: 10px;
}

.whatsapp-button {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: background-color 0.3s;
  margin-top: 20px;
}

.whatsapp-button:hover {
  background-color: #128C7E;
  color: white;
  text-decoration: none;
}

.related-products {
  margin-top: 40px;
}

.related-product-card {
  transition: transform 0.3s;
}

.related-product-card:hover {
  transform: translateY(-5px);
}

.related-product-image {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.pagination {
  justify-content: center;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}/*# sourceMappingURL=style.css.map */