* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  zoom: 0.5;
  background-color: #f4f4f4;
}

/* Navbar styles - updated to match order.css */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #333, #555);
  padding: 20px 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  height: 90px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo img {
  height: 90px;
  width: 90px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 5px;
}

.company-name {
  font-size: 24px;
  font-weight: bold;
  color: #cbc6c6;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: #dcdada;
  text-decoration: none;
  font-size: 1.4rem;
  padding: 15px 20px;
  display: inline-block;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.nav-links a:hover {
  color: #fff;
  background-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 30px;
  height: 5px;
  background-color: white;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* Search Bar & Category Filter */
.search-filter-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  gap: 10px;
}

#search-bar,
#category-select {
  padding: 10px;
  border: 2px solid #645b4e;
  border-radius: 5px;
  font-size: 1rem;
}

#suggestions {
  position: absolute;
  list-style: none;
  width: 250px;
  background: white;
  border: 1px solid #b1abab;
  display: none;
  max-height: 150px;
  overflow-y: auto;
}

#suggestions li {
  padding: 10px;
  cursor: pointer;
}

#suggestions li:hover {
  background: #ddd;
}

/* Grid Layout */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  padding: 30px;
  max-width: 1900px;
  margin: auto;
}

.grid-item {
  background: #ececec;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.grid-item:hover {
  transform: scale(1.05);
}

.grid-item img {

  width: 290px;
  height: 600px;
  object-fit: cover;
  border-radius: 5px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 10;
  overflow: hidden;
}

.lightbox img {
  max-width: 80%;
  max-height: 90%;
  transition: transform 0.3s ease-in-out;
}

.zoom-in,
.zoom-out,
.image-close-btn {
  position: absolute;
  top: 20px;
  font-size: 2rem;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 15;
}

.zoom-in {
  right: 80px;
}

.zoom-out {
  right: 20px;
}

.image-close-btn {
  top: 100px;
  right: 20px;
  background-color: rgb(147, 142, 142);
  border-radius: 5px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 20;
}

#lightbox-img {
  max-width: 90%;
  max-height: 90%;
  transition: transform 0.1s ease;
  transform-origin: center center;
  cursor: zoom-in;
  user-select: none;
}

/* Enhanced Footer Styling - Centered */
footer {
  background: linear-gradient(135deg, #2c2c2c, #444);
  color: #fff;
  padding: 80px 40px 40px;
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 0;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 0 20px;
}

.footer-column h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  color: #fff;
  text-transform: uppercase;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #fff, #ccc);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links li a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-links li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.footer-links li a:hover::after {
  width: 100%;
}

.footer-column p {
  color: #ccc;
  line-height: 1.8;
  font-size: 16px;
  max-width: 300px;
  margin: 0 auto;
}

.contact-info p {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #ccc;
}

.contact-icon {
  margin-right: 12px;
  color: #fff;
  font-size: 18px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 14px;
  color: #aaa;
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
      display: flex;
  }

  .nav-links {
      position: absolute;
      top: 90px;
      left: 0;
      background: #444;
      flex-direction: column;
      width: 100%;
      align-items: center;
      display: none;
      padding: 20px 0;
      box-shadow: 0 5px 10px rgba(0,0,0,0.1);
      z-index: 100;
  }

  .nav-links.active {
      display: flex;
  }

  .nav-links li {
      width: 100%;
      text-align: center;
  }

  .nav-links a {
      width: 100%;
      padding: 15px 0;
  }

  .grid-container {
      padding: 15px;
  }

  .footer-container {
      flex-direction: column;
      align-items: center;
      gap: 30px;
  }

  .footer-column {
      text-align: center;
  }

  .footer-column h3::after {
      left: 50%;
      transform: translateX(-50%);
  }

  .footer-column p {
      margin: 0 auto;
  }

  .contact-info p {
      justify-content: center;
  }
}