* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fef6f9;
  color: #1e1e1e;
  scroll-behavior: smooth;
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
  background: #1e1e1e;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.logo h2 {
  color: #ff99cc;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
}

.logo span {
  color: white;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links li a {
  color: #f5e9ec;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 1rem;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #ff99cc;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  color: #ff99cc;
  cursor: pointer;
  background: none;
  border: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 75%;
  max-width: 280px;
  height: 100%;
  background: #1e1e1e;
  z-index: 2000;
  padding: 2rem 1.5rem;
  transition: left 0.3s ease;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu .close-menu {
  text-align: right;
  font-size: 1.6rem;
  color: #ff99cc;
  cursor: pointer;
  margin-bottom: 2rem;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  padding: 0.3rem 0;
}

.mobile-menu ul li a:hover {
  color: #ff99cc;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  display: none;
}

.overlay.active {
  display: block;
}

/* container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Page Header */
.page-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.page-header h1 {
  font-size: 2.5rem;
  color: #1e1e1e;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: #6b4c5c;
  font-size: 1rem;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: white;
  border: 1px solid #ffe0ed;
  padding: 0.6rem 1.3rem;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #4a2e3a;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  background: #ffd9e8;
  border-color: #ff99cc;
}

.filter-btn.active {
  background: #1e1e1e;
  color: #ff99cc;
  border-color: #1e1e1e;
}

/* Products Grid - 3 columns default */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.product-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #ffe0ed;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.product-img {
  width: 100%;
  height: 220px;
  background-color: #fceef3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #d43f7a;
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #d43f7a;
  color: white;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-weight: 600;
}

.badge.bestseller {
  background: #ffb347;
  color: #1e1e1e;
}

.badge.new {
  background: #1e1e1e;
  color: #ff99cc;
}

.product-info {
  padding: 1.2rem;
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: #1e1e1e;
}

.product-desc {
  color: #6b4c5c;
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.product-variants {
  font-size: 0.7rem;
  color: #a05a6e;
  margin-bottom: 0.5rem;
}

.price {
  font-weight: bold;
  color: #d43f7a;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.btn-view {
  background: #1e1e1e;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.btn-view:hover {
  background: #d43f7a;
}

/* No results */
.no-results {
  text-align: center;
  padding: 3rem;
  color: #a05a6e;
  grid-column: 1 / -1;
}

/* Footer */
.footer {
  background: #1e1e1e;
  color: #e0cbd3;
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 780px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .container {
    padding: 1.5rem 1rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}

@media (max-width: 550px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .filter-bar {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
  }

  .product-img {
    height: 200px;
  }
}