  /* CSS Variables */



  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  .bodyy {
      font-family: 'Inter', sans-serif;
      background-color: var(--light-bg);
      color: var(--gray-800);
      line-height: 1.6;
      min-height: 100vh;
  }

  /* .bodyy {
    background-color: var(--light-bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cimage href='https://cdn-icons-png.flaticon.com/512/415/415733.png' x='10' y='10' width='24' height='24' opacity='0.25'/%3E%3Cimage href='https://cdn-icons-png.flaticon.com/512/766/766187.png' x='100' y='20' width='24' height='24' opacity='0.25'/%3E%3Cimage href='https://cdn-icons-png.flaticon.com/512/765/765527.png' x='40' y='80' width='24' height='24' opacity='0.25'/%3E%3Cimage href='https://cdn-icons-png.flaticon.com/512/415/415748.png' x='120' y='100' width='24' height='24' opacity='0.25'/%3E%3Cimage href='https://cdn-icons-png.flaticon.com/512/415/415734.png' x='70' y='130' width='24' height='24' opacity='0.25'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 160px 160px;
    background-attachment: fixed;
    position: relative;
} */

  .bodyy::before {
      content: "";
      position: absolute;
      inset: 0;
      background-color: rgba(255, 255, 255, 0.85);
      pointer-events: none;
  }

  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
  }

  /* Page Header */
  .page-header {
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
      color: var(--text-on-primary);
      padding: 2rem 0;
      text-align: center;
      margin-bottom: 2rem;
      position: relative;
      overflow: hidden;
  }

  .page-title {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
  }

  .breadcrumb {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      opacity: 0.9;
      flex-wrap: wrap;
  }

  .breadcrumb a {
      color: var(--text-on-primary);
      text-decoration: none;
  }

  .breadcrumb span {
      color: rgba(0, 0, 0, 0.8);
  }

  /* Hero Section */
  .hero-section {
      position: relative;
      overflow: hidden;
      padding: 3rem 0;
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-hover) 100%);
      color: var(--text-on-primary);
      border-radius: 0 0 24px 24px;
      margin-bottom: 2rem;
  }

  .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.3);
      mix-blend-mode: multiply;
  }

  .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      padding: 0 1rem;
  }

  .hero-title {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 1rem;
      line-height: 1.2;
  }

  .hero-subtitle {
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto 2rem;
      opacity: 0.9;
  }

  .hero-actions {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
  }

  .hero-btn {
      padding: 0.75rem 1.5rem;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
  }

  .hero-btn-primary {
      background: var(--white);
      color: var(--primary-color);
  }

  .hero-btn-secondary {
      border: 1px solid rgba(255, 255, 255, 0.6);
      color: var(--white);
  }

  .hero-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .hero-btn-primary:hover {
      background: var(--light-bg);
  }

  .hero-btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
  }

  .hero-waves {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      overflow: hidden;
  }

  .hero-waves svg {
      display: block;
      width: 100%;
      height: auto;
  }

  /* Filter Drawer Styles */
  .filter-drawer {
      position: fixed;
      top: 0;
      left: -320px;
      width: 320px;
      height: 100vh;
      background: var(--white);
      box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      transition: left 0.3s ease;
      overflow-y: auto;
      padding: 1.5rem;
  }

  .filter-drawer.active {
      left: 0;
  }

  .filter-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 999;
      display: none;
  }

  .filter-overlay.active {
      display: block;
  }

  .filter-drawer-header {
      display: flex;
      justify-content: between;
      align-items: center;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--gray-300);
  }

  .filter-drawer-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--gray-800);
      margin: 0;
  }

  .close-filter-drawer {
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--light-orange);
      cursor: pointer;
      padding: 0;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .close-filter-drawer:hover {
      color: var(--primary-color);
  }

  .filter-toggle-btn {
      opacity: 1 !important;

      filter: none !important;
      -webkit-filter: none !important;
      backdrop-filter: none !important;

      mix-blend-mode: normal !important;
      background-blend-mode: normal !important;

      appearance: none !important;
      -webkit-appearance: none !important;

      position: relative;
      z-index: 10;

      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-bottom: 1.5rem;

      background: var(--primary-color) !important;
      color: white !important;
  }

  .filter-toggle-btn::after,
  .filter-toggle-btn::before {
      display: none !important;
      content: none !important;
  }

  /* Products Layout */
  .products-section {
      padding: 2rem 0 4rem;
  }

  .products-layout {
      display: block;
  }

  /* Filter Groups */
  .filter-group {
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--gray-300);
  }

  .filter-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: var(--primary-hover);
      font-size: 1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 1rem;
  }

  .filter-title button {
      font-size: 0.75rem;
      padding: 0.25rem 0.75rem;
      border-radius: 6px;
      background: var(--primary-color);
      color: var(--text-on-primary);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .filter-title button:hover {
      background: var(--primary-hover);
  }

  .category-list {
      list-style: none;
  }

  .category-item {
      margin-bottom: 0.5rem;
  }

  .category-link {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.75rem 1rem;
      border-radius: 10px;
      text-decoration: none;
      color: var(--gray-700);
      font-weight: 500;
      transition: all 0.3s ease;
  }

  .category-link.active,
  .category-link:hover {
      background: var(--primary-color);
      color: var(--text-on-primary);
      box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
  }

  .category-count {
      font-size: 0.8rem;
      opacity: 0.8;
  }

  .price-range {
      display: flex;
      flex-direction: column;
      gap: 1rem;
  }

  .price-inputs {
      display: flex;
      gap: 0.5rem;
  }

  .price-input {
      width: 100%;
      padding: 0.5rem;
      border: 1px solid var(--gray-300);
      border-radius: 6px;
      font-size: 0.9rem;
  }

  .price-input:focus {
      outline: none;
      border-color: var(--primary-color);
      box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
  }

  .filter-btn {
      padding: 0.75rem;
      background: var(--primary-color);
      color: var(--text-on-primary);
      border: none;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .filter-btn:hover {
      background: var(--primary-hover);
  }

  .rating-options {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
  }

  .rating-option {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.5rem;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .rating-option:hover {
      background: var(--light-orange);
  }

  .rating-option input {
      accent-color: var(--primary-color);
  }

  .rating-stars {
      color: var(--secondary-color);
  }

  .availability-options {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
  }

  .availability-option {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.5rem;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .availability-option:hover {
      background: var(--light-orange);
  }

  .availability-option input {
      accent-color: var(--primary-color);
  }

  /* Products Grid */
  .products-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      flex-wrap: wrap;
      gap: 1rem;
  }

  .products-count {
      font-size: 0.9rem;
      color: var(--gray-600);
  }

  .view-options {
      display: flex;
      gap: 0.5rem;
  }

  .view-btn {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--white);
      border: 1px solid var(--gray-300);
      border-radius: 8px;
      color: var(--gray-600);
      cursor: pointer;
      transition: all 0.3s;
  }

  .view-btn.active {
      background: var(--primary-color);
      border-color: var(--primary-color);
      color: var(--text-on-primary);
  }

  .products-grid {
      opacity: 0;
  }


  /* TWO CARDS PER ROW ON DESKTOP - Disabled as we use Bootstrap Grid */
  .products-grid {
      /* display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; */
  }

  .product-card {
      background: var(--white);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
  }

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

  .product-image-container {
      height: 200px;
      overflow: hidden;
      position: relative;
      flex-shrink: 0;
  }

  .product-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
  }

  .product-card:hover .product-image {
      transform: scale(1.05);
  }

  .product-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 10;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
  }

  .offer-badge {
      background: linear-gradient(45deg, var(--secondary-color), var(--secondary-hover));
      color: var(--text-on-secondary);
  }

  .new-badge {
      background: linear-gradient(45deg, #3b82f6, #1d4ed8);
      color: var(--white);
  }

  .product-actions {
      position: absolute;
      top: 12px;
      right: 12px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      opacity: 0;
      transition: all 0.3s ease;
  }

  .product-card:hover .product-actions {
      opacity: 1;
  }

  .action-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--white);
      color: var(--primary-color);
      border: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      cursor: pointer;
  }

  .action-btn:hover {
      background: var(--primary-color);
      color: var(--text-on-primary);
      transform: scale(1.1);
  }

  .product-info {
      padding: 1.25rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
  }

  .product-category {
      font-size: 0.8rem;
      color: var(--gray-500);
      margin-bottom: 0.25rem;
  }

  .product-name {
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--gray-800);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 2.5rem;
      flex-grow: 1;
  }

  .product-rating {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      margin-bottom: 0.75rem;
  }

  .rating-stars {
      color: var(--secondary-color);
      font-size: 0.8rem;
  }

  .rating-count {
      font-size: 0.8rem;
      color: var(--gray-500);
  }

  .product-price {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
      flex-wrap: wrap;
  }

  .current-price {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--accent-color);
  }

  .original-price {
      font-size: 0.9rem;
      color: var(--gray-400);
      text-decoration: line-through;
  }

  .discount {
      font-size: 0.8rem;
      color: #ef4444;
      font-weight: 600;
  }

  .product-actions-bottom {
      display: flex;
      gap: 0.5rem;
      margin-top: auto;
  }

  .add-to-cart-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.75rem;
      background: var(--primary-color);
      color: var(--text-on-primary);
      border: none;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
      cursor: pointer;
      font-size: 0.9rem;
  }

  .add-to-cart-btn:hover {
      background: var(--primary-hover);
  }

  .buy-now-btn {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--secondary-color);
      color: var(--text-on-secondary);
      border: none;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
      cursor: pointer;
  }

  .buy-now-btn:hover {
      background: var(--secondary-hover);
  }

  .pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      margin-top: 2rem;
      flex-wrap: wrap;
  }

  .pagination-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      background: linear-gradient(135deg, #f97316, #ea580c);
      color: #fff;
      border-radius: 0.75rem;
      font-weight: 600;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
      transition: all 0.25s ease;
      opacity: 1 !important;
      text-decoration: none;
  }

  .pagination-btn:hover {
      background: linear-gradient(135deg, #ea580c, #c2410c);
      transform: translateY(-2px);
      box-shadow: 0 0 14px rgba(249, 115, 22, 0.5);
      color: #fff;
  }

  .pagination-btn.active {
      background: linear-gradient(135deg, #facc15, #eab308);
      color: #111;
      box-shadow: 0 0 16px rgba(250, 204, 21, 0.6);
  }

  .pagination-btn.disabled {
      background: #374151;
      color: #9ca3af;
      opacity: 0.6;
      cursor: not-allowed;
  }

  /* Load More Button */
  .load-more-container {
      display: flex;
      justify-content: center;
      margin-top: 2rem;
  }

  #load-more-btn {
      pointer-events: auto !important;
      padding: 0.75rem 1.5rem;
      background: var(--primary-color);
      color: var(--text-on-primary);
      opacity: 1 !important;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-bottom: 1.5rem;

      color: white !important;

      filter: none !important;
      -webkit-filter: none !important;
      backdrop-filter: none !important;

      mix-blend-mode: normal !important;
      background-blend-mode: normal !important;

      appearance: none !important;
      -webkit-appearance: none !important;

      position: relative;
      z-index: 10;

      display: flex;
      align-items: center;
  }

  #load-more-btn:hover {
      background: var(--primary-hover);
  }

  .loader {
      border: 5px solid #f3f3f3;
      border-top: 5px solid var(--primary-color);
      border-radius: 50%;
      width: 50px;
      height: 50px;
      animation: spin 1s linear infinite;
      display: inline-block;
      margin: 20px auto;
  }

  @keyframes spin {
      0% {
          transform: rotate(0deg);
      }

      100% {
          transform: rotate(360deg);
      }
  }

  #products-loader {
      display: none;
      text-align: center;
      margin: 20px 0;
  }

  /* Animations */
  @keyframes slideUp {
      from {
          opacity: 0;
          transform: translateY(40px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
      }

      to {
          opacity: 1;
      }
  }

  .animate-slide-up {
      animation: slideUp 1s ease forwards;
  }

  .animate-fade-in {
      animation: fadeIn 1.5s ease forwards;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
      .products-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .hero-title {
          font-size: 2.2rem;
      }
  }

  @media (max-width: 768px) {
      .products-grid {
          grid-template-columns: 1fr;
          gap: 1rem;
      }

      .hero-section {
          padding: 2rem 0;
          border-radius: 0 0 20px 20px;
      }

      .hero-title {
          font-size: 1.8rem;
      }

      .hero-subtitle {
          font-size: 1rem;
      }

      .hero-actions {
          flex-direction: column;
          align-items: center;
      }

      .hero-btn {
          width: 100%;
          max-width: 250px;
          text-align: center;
      }

      .product-image-container {
          height: 160px;
      }

      .product-info {
          padding: 1rem;
      }

      .product-name {
          font-size: 0.9rem;
      }

      .current-price {
          font-size: 1.1rem;
      }

      .product-actions-bottom {
          flex-direction: column;
      }

      .buy-now-btn {
          width: 100%;
      }

      .page-title {
          font-size: 1.8rem;
      }

      .filter-drawer {
          width: 300px;
      }
  }

  @media (max-width: 640px) {
      .container {
          padding: 0 10px;
      }

      .products-grid {
          grid-template-columns: 1fr;
          gap: 0.75rem;
      }

      .product-image-container {
          height: 140px;
      }

      .product-info {
          padding: 0.75rem;
      }

      .product-name {
          font-size: 0.85rem;
          min-height: 2.2rem;
      }

      .current-price {
          font-size: 1rem;
      }

      .add-to-cart-btn {
          font-size: 0.8rem;
          padding: 0.6rem;
      }

      .hero-title {
          font-size: 1.6rem;
      }

      .page-title {
          font-size: 1.6rem;
      }

      .filter-group {
          padding-bottom: 1rem;
          margin-bottom: 1rem;
      }

      .price-inputs {
          flex-direction: column;
      }

      .filter-drawer {
          width: 280px;
      }
  }

  @media (max-width: 480px) {
      .products-grid {
          grid-template-columns: 1fr;
      }

      .hero-section {
          padding: 1.5rem 0;
      }

      .hero-title {
          font-size: 1.4rem;
      }

      .hero-subtitle {
          font-size: 0.9rem;
      }

      .page-header {
          padding: 1.5rem 0;
      }

      .page-title {
          font-size: 1.4rem;
      }

      .breadcrumb {
          font-size: 0.8rem;
      }

      .products-section {
          padding: 1.5rem 0 3rem;
      }

      .pagination-btn {
          width: 36px;
          height: 36px;
          font-size: 0.9rem;
      }

      .filter-drawer {
          width: 100%;
          left: -100%;
      }
  }