  /* Reset and Base Styles */
  
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: #2c3e50;
      background-color: #f8f9fa;
  }
  
  .container {
      margin: 0 auto;
  }
  /* Header Styles */
  
  header {
      background: linear-gradient(135deg, #2c3e50, #34495e);
      color: white;
      padding: 1rem 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
  }
  
  .logo h1 {
      font-size: 2rem;
      font-weight: bold;
      color: #f39c12;
  }
  
  .logo p {
      font-size: 0.9rem;
      opacity: 0.9;
  }
  /* Navigation Styles */
  
  nav ul {
      list-style: none;
      display: flex;
      gap: 2rem;
  }
  
  nav a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }
  
  nav a:hover {
      color: #f39c12;
  }
  /* Filter Section Styles */
  
  .filter-section {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      padding: 2rem 0;
      background-color: #ecf0f1;
  }
  
  .filter-card {
      background: white;
      padding: 1rem;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .talla-select {
      padding: 0.5rem;
      border: 1px solid #bdc3c7;
      border-radius: 4px;
      min-width: 250px;
  }
  
  .btn-filter {
      background-color: #f39c12;
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      cursor: pointer;
      transition: background-color 0.3s;
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }
  
  .btn-filter:hover {
      background-color: #e67e22;
  }
  /* Stats Bar Styles */
  
  .stats-bar {
      display: flex;
      justify-content: center;
      gap: 2rem;
      padding: 1rem;
      background-color: #2c3e50;
      color: white;
  }
  
  .stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  
  .stat-number {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f39c12;
  }
  
  .stat-label {
      font-size: 0.9rem;
      opacity: 0.8;
  }
  /* Products Grid Styles */
  
  .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      padding: 2rem 0;
  }
  
  .product-card {
      background: white;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s;
      animation: fadeIn 0.5s ease;
  }
  
  .product-card:hover {
      transform: translateY(-5px);
  }
  
  .product-image {
      height: 250px;
      overflow: hidden;
  }
  
  .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
  
  .image-placeholder {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
      background-color: #ecf0f1;
      font-size: 3rem;
  }
  
  .product-info {
      padding: 1rem;
  }
  
  .product-name {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
      color: #2c3e50;
  }
  
  .product-details {
      display: flex;
      justify-content: space-between;
      margin-bottom: 0.5rem;
      color: #7f8c8d;
  }
  
  .category-badge {
      background-color: #f39c12;
      color: white;
      padding: 0.25rem 0.5rem;
      border-radius: 4px;
      font-size: 0.8rem;
      display: inline-block;
  }
  /* Loading Styles */
  
  .loading {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2rem;
  }
  
  .spinner {
      border: 4px solid #f3f3f3;
      border-top: 4px solid #f39c12;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      animation: spin 1s linear infinite;
      margin-bottom: 1rem;
  }
  
  .no-products {
      text-align: center;
      padding: 2rem;
      background-color: #ecf0f1;
      border-radius: 10px;
  }
  /* Animations */
  
  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(20px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  @keyframes spin {
      0% {
          transform: rotate(0deg);
      }
      100% {
          transform: rotate(360deg);
      }
  }
  /* Responsive Adjustments */
  
  @media (max-width: 768px) {
      .header-content {
          flex-direction: column;
          gap: 1rem;
          text-align: center;
      }
      nav ul {
          flex-direction: column;
          align-items: center;
      }
      .filter-section {
          flex-direction: column;
      }
      .talla-select {
          width: 100%;
      }
      .stats-bar {
          flex-direction: column;
          gap: 1rem;
      }
  }