body {
  background: #f0f5ff;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 40px;
   background-color: white;
}
.site-header { background-color: white;background: var(--card); box-shadow: 0 1px 6px rgba(12, 20, 25, 0.04); position: sticky; top: 0; z-index: 80; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; }
.brand a { font-weight: 800; color: var(--accent); text-decoration: none; font-size: 18px; }
.main-nav { display: flex; gap: 18px; }
.main-nav a { color: #0f172a; text-decoration: none; font-weight: 700; }

.girls-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  padding: 28px 0;
  align-items: start;
}

.products-section h1 {
  text-align: left;
  margin: 0 0 20px;
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
}

.filter-sidebar {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: sticky;
  top: 90px;
}
.filter-group { margin-bottom: 15px; }
.filter-actions { display: flex; gap: 10px; margin-top: 15px; }

.product-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
  gap: 24px !important;
  
  overflow-x: visible !important;
  flex-wrap: wrap !important;
}

article{
   display: inline-block;
   width: 350px;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 60, 255, 0.1);
  padding: 12px;
  height: 100%;
  
  width: 100%;          
  box-sizing: border-box;

  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 60, 255, 0.2);
}

.card-media {
  width: 100%;
  height: 220px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  padding: 5px; 
  transition: transform 0.3s ease;
}

.product-card:hover .card-media img {
  transform: scale(1.05);
}
.card-body {
  display: flex;
  flex-direction: column;
  flex: 1; 
}

.card-body h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: #1e3a8a;
  line-height: 1.3;
}

.card-body .desc {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: #555;
  flex-grow: 1; 
}

.card-body .price {
  color: #0036c7;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.add-to-cart {
  background: #1e40af;
  border: none;
  padding: 10px 0;
  width: 100%;
  color: white;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: auto; 
  transition: background 0.2s;
}

.add-to-cart:hover {
  background: #0f257a;
}

@media(max-width: 900px) {
  .girls-wrapper {
    grid-template-columns: 1fr;
  }
  .filter-sidebar {
    order: -1;
    position: static;
    margin-bottom: 20px;
  }
}
