/* Products Page Specific Styles */
    .products-page {
      padding-top: 100px;
      min-height: 100vh;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .products-header {
      background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
      color: white;
      padding: 4rem 0;
      text-align: center;
    }

    .products-header h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      font-family: 'Playfair Display', serif;
    }

    .products-header p {
      font-size: 1.1rem;
      opacity: 0.9;
      max-width: 600px;
      margin: 0 auto;
    }

    .products-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 2rem;
    }

    .products-toolbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .search-filter {
      display: flex;
      gap: 1rem;
      align-items: center;
      flex-wrap: wrap;
    }

    .search-box {
      position: relative;
      min-width: 300px;
    }

    .search-box input {
      width: 100%;
      padding: 0.75rem 1rem 0.75rem 3rem;
      border: 2px solid #e9ecef;
      border-radius: 50px;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .search-box input:focus {
      outline: none;
      border-color: var(--primary-color);
      box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    }

    .search-box i {
      position: absolute;
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
      color: #6c757d;
    }

    .filter-dropdown {
      position: relative;
      min-width: 200px;
    }

    .filter-dropdown select {
      width: 100%;
      padding: 0.75rem 1rem;
      border: 2px solid #e9ecef;
      border-radius: 8px;
      font-size: 1rem;
      background: white;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .filter-dropdown select:focus {
      outline: none;
      border-color: var(--primary-color);
    }

    .view-options {
      display: flex;
      gap: 0.5rem;
      align-items: center;
    }

    .view-toggle {
      display: flex;
      border: 2px solid #e9ecef;
      border-radius: 8px;
      overflow: hidden;
    }

    .view-toggle button {
      padding: 0.5rem 1rem;
      border: none;
      background: white;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .view-toggle button.active {
      background: var(--primary-color);
      color: white;
    }

    .view-toggle button:hover:not(.active) {
      background: #f8f9fa;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .products-grid.list-view {
      grid-template-columns: 1fr;
    }

    .product-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      position: relative;
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

    .product-card.list-view {
      display: flex;
      align-items: center;
      padding: 1rem;
    }

    .product-card.list-view .product-image {
      width: 200px;
      height: 150px;
      margin-right: 2rem;
    }

    .product-card.list-view .product-info {
      flex: 1;
      padding: 0;
    }

    .product-badge {
      position: absolute;
      top: 1rem;
      left: 1rem;
      background: var(--primary-color);
      color: white;
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      z-index: 2;
    }

    .product-image {
      height: 250px;
      position: relative;
      overflow: hidden;
    }

    .swiper-container {
      width: 100%;
      height: 100%;
    }

    .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .swiper-pagination {
      bottom: 10px;
    }

    .swiper-pagination-bullet {
      background: white;
      opacity: 0.7;
    }

    .swiper-pagination-bullet-active {
      background: var(--primary-color);
      opacity: 1;
    }

    .product-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: all 0.3s ease;
      z-index: 1;
    }

    .product-card:hover .product-overlay {
      opacity: 1;
    }

    .product-actions {
      display: flex;
      gap: 0.5rem;
    }

    .product-actions button, .product-actions a {
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
    }

    .btn-view {
      background: transparent;
      color: white;
      border: 2px solid white;
    }

    .btn-view:hover {
      background: white;
      color: var(--primary-color);
      border-color: white;
    }

    .btn-inquire {
      background: white;
      color: var(--primary-color);
      border: 2px solid var(--primary-color);
    }

    .btn-inquire:hover {
      background: var(--primary-color);
      color: white;
    }

    .product-info {
      padding: 1.5rem;
    }

    .product-name {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--text-color);
    }

    .product-code {
      color: #6c757d;
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }

    .product-category {
      display: inline-block;
      background: #e9ecef;
      color: #495057;
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 500;
      margin-bottom: 1rem;
    }

    .product-description {
      color: #6c757d;
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      margin-top: 3rem;
    }

    .pagination button {
      padding: 0.75rem 1rem;
      border: 2px solid #e9ecef;
      background: white;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 600;
    }

    .pagination button:hover {
      border-color: var(--primary-color);
      color: var(--primary-color);
    }

    .pagination button.active {
      background: var(--primary-color);
      border-color: var(--primary-color);
      color: white;
    }

    .pagination button:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    .no-products {
      text-align: center;
      padding: 4rem 2rem;
      color: #6c757d;
    }

    .no-products i {
      font-size: 4rem;
      margin-bottom: 1rem;
      opacity: 0.5;
    }

    @media (max-width: 768px) {
      .products-header h1 {
        font-size: 2rem;
      }

      .products-toolbar {
        flex-direction: column;
        align-items: stretch;
      }

      .search-filter {
        flex-direction: column;
      }

      .search-box {
        min-width: auto;
      }

      .products-grid {
        grid-template-columns: 1fr;
      }

      .product-card.list-view {
        flex-direction: column;
        text-align: center;
      }

      .product-card.list-view .product-image {
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: 1rem;
      }
    }