* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Bodoni Moda', Georgia, serif;
}
body {
  font-family: 'Helvetica Neue', sans-serif;
  background: white;
  color: white;

}
/* Navbar*/
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  max-width: 1200px;
  margin: auto;
  position: relative;
}
.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.logo {
  font-size: 1.5rem;
  letter-spacing: 2px;
  font-family: 'Bodoni Moda', serif;
  color: black;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}
.logo:hover {
  opacity: 0.6;
}
.nav-right .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-left .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links li a {
  text-decoration: none;
  color:black;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.nav-links li a:hover {
  opacity: 0.6;
}

.navbar.scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links li a {
  color: black;
}
.navbar.scrolled .logo-img {
  filter: brightness(0);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto 6rem;
  padding: 0 1rem;
}
.product-card {
  background: white;
  color: black;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgb(0 0 0 / 0.15);
}
.product-card a {
  display: block;
  overflow: hidden;
  flex-shrink: 0;
}
.product-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.product-card:hover img {
  transform: scale(1.05);
}
.product-card h3 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  font-size: 0.8rem;
  margin: 1rem 1rem 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.product-card .price {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin: 0 1rem 1.2rem;
  color: black;
}
/* Responsive  */
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    margin: 3rem 1rem 4rem;
  }

  .product-card h3 {
    font-size: 1.1rem;
  }
}
/* Footer */
/* Responsive */
@media (max-width: 768px) {

}
/* Category  Container */
.category-bar {
  width: 100%;
  background: white;
  padding: 1rem 0;
  text-align: center;
  border-bottom: 1px solid #ddd;
  font-family: 'Bodoni Moda', serif;
  user-select: none;
  margin-top: 60px;
  position: relative;
  z-index: 10;
}
.category-menu {
  list-style: none;
  display: inline-flex;
  gap: 4rem;
  padding: 0;
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
}
.category-menu li a {
  position: relative;
  color: black;
  text-decoration: none;
  padding-bottom: 4px;
  transition: color 0.3s ease;
  cursor: pointer;
}
.category-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: black;
  transition: width 0.3s ease;
}
.category-menu li a:hover::after,
.category-menu li a.active::after {
  width: 100%;
}
.category-menu li a:hover,
.category-menu li a.active {
  color: #222;
}
@media (max-width: 480px) {
  .category-menu {
    gap: 2rem;
    font-size: 1rem;
  }
}
.shop-main {
  margin-top: 120px;
}

/* --- Standard Footer --- */
.fog-footer {
  background: #080c16 !important;
  padding: 30px 20px;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  font-family: 'Bodoni Moda', serif;
  font-size: 14px;
  margin-top: auto;
  color: #f0ebd8;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
