   /* Category page specific styles */
	:root {
       <!-- --clean-blue: #4A90E2;-->
	  --clean-blue: #ffffff;
      --fresh-green: #7ED321;
      --pure-white: #FFFFFF;
      <!-- --bubble-blue: #E8F4FD; -->
	  --bubble-blue: #ffffff;
      --mint-green: #F0FDF4;
      --ocean-teal: #0891B2;
    }

@media (prefers-color-scheme: dark) {
  :root {
       <!-- --clean-blue: #4A90E2;-->
	  --clean-blue: #ffffff;
      --fresh-green: #7ED321;
      --pure-white: ##ddc9af;
      <!-- --bubble-blue: #E8F4FD; -->
	  --bubble-blue: #ffffff;
      --mint-green: #F0FDF4;
      --ocean-teal: #0891B2;
  }
}
    .category-header {
      text-align: center;
      padding: 40px 20px;
      background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-color) 100%);
      margin-bottom: 40px;
    }
    
    .category-header h1 {
      font-size: 2.5em;
      color: var(--card-text);
      margin-bottom: 10px;
    }
    
    .category-header p {
      font-size: 1.2em;
      color: var(--text-color);
      max-width: 600px;
      margin: 0 auto;
    }
    
    .products-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 350px));
justify-content: center;
      gap: 30px;
      margin-bottom: 60px;
    }
    
   .product-item {
      background: var(--pure-white);
      border-radius: 20px;
      padding: 25px;
      box-shadow: 0 8px 32px rgba(74, 144, 226, 0.12);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      text-align: center;
      position: relative;
      overflow: hidden;
      border: 2px solid transparent;
    }
    
    .product-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      transition: left 0.6s ease;
    }
    
    .product-item:hover::before {
      left: 100%;
    }
    
    .product-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(74, 144, 226, 0.2);
      border-color: var(--fresh-green);
    }
    
    .product-image {
      width: 100%;
      height: 220px;
      object-fit: contain;
      border-radius: 15px;
      margin-bottom: 20px;
      background: var(--bubble-blue);
      padding: 15px;
      transition: transform 0.3s ease;
    }
    
    .product-item:hover .product-image {
      transform: scale(1.05);
    }
    
    .product-title {
      font-size: 1.4em;
      font-weight: 700;
      color: var(--card-text);
      margin-bottom: 12px;
      position: relative;
    }
    
    .product-description {
      color: var(--card-text);
      line-height: 1.6;
      margin-bottom: 20px;
      font-size: 1.1em;
    }
    
    .product-specs {
      background: var(--mint-green);
      padding: 20px;
      border-radius: 15px;
      margin-bottom: 20px;
      text-align: left;
      border-left: 4px solid var(--fresh-green);
    }
    
    .spec-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
      font-size: 1em;
      padding: 5px 0;
    }
    
    .spec-item:last-child {
      margin-bottom: 0;
    }
    
    .spec-label {
      font-weight: 600;
      color: var(--ocean-teal);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .spec-label::before {
      content: '✨';
      font-size: 0.8em;
    }
    
    .spec-value {
      color: #475569;
      font-weight: 500;
      background: var(--pure-white);
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.85em;
      /* Полная изоляция от трансформаций */
      transition: none !important;
      transform: none !important;
      animation: none !important;
      will-change: auto !important;
      /* Фиксируем все возможные свойства */
      line-height: 1.2 !important;
      letter-spacing: normal !important;
      word-spacing: normal !important;
    }
	
	    .hidden {
      display: none;
    }
    
    /* Полное отключение всех эффектов для spec-value */
    .product-item:hover .spec-value,
    .product-item:hover .spec-value *,
    .spec-value,
    .spec-value * {
      font-size: 0.85em !important;
      transform: none !important;
      transition: none !important;
      animation: none !important;
      scale: none !important;
      zoom: 1 !important;
      line-height: 1.2 !important;
    }
     
    .product-price {
      font-size: 1.4em;
      font-weight: 700;
      color: var(--btn-bg);
      margin-bottom: 15px;
    }
    
    .contact-btn {
      background: var(--btn-bg);
      color: white;
      padding: 12px 24px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 600;
      transition: background 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }
    
    .contact-btn:hover {
      background: var(--btn-hover-bg);
    }
    
    .breadcrumb {
      padding: 20px;
      font-size: 0.9em;
    }
    
    .breadcrumb a {
      color: var(--card-text);
      text-decoration: none;
    }
    
    .breadcrumb a:hover {
      text-decoration: underline;
    }
	
	
	
/* Special effects for cleaning theme */
.sparkle-effect {
  position: relative;
}

.sparkle-effect::after {
  content: '✨';
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 0.8em;
  opacity: 0;
  transform: scale(0.8);
}

/* Активируем анимацию при наведении на product-item */
.product-item:hover .sparkle-effect::after {
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}
 
    
    @media (max-width: 768px) {
      .category-header h1 {
        font-size: 2em;
      }
      
      .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
      }
      
      .product-item {
        padding: 15px;
      }
    }
	/* Кнопка навигации по категориям */
#categoryNavBtn {
  position: fixed;
  bottom: 30px; /* Выше кнопки "наверх" */
  left: 30px;
  z-index: 99;
      background-color: #007bff;
  color: white;
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(229, 142, 0, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

#categoryNavBtn:hover {
      background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(229, 142, 0, 0.4);
}

/* Выпадающее меню категорий */
.category-dropdown {
  position: fixed;
  bottom: 170px; /* Над кнопкой навигации */
  left: 30px;
  z-index: 98;
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 8px 25px var(--shadow);
  min-width: 280px;
  max-height: 100%;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.category-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.category-dropdown-header {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 600;
  color: var(--card-text);
  font-size: 16px;
}

.category-list {
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.category-item {
  margin: 0;
}

.category-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.category-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
  border-left-color: var(--btn-bg);
  color: var(--btn-bg);
}

.category-link.active {
  background-color: rgba(229, 142, 0, 0.1);
  border-left-color: var(--btn-bg);
  color: var(--btn-bg);
  font-weight: 600;
}

.category-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.category-name {
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
}

/* Анимация иконки кнопки */
.nav-icon {
  transition: transform 0.3s ease;
}

#categoryNavBtn.active .nav-icon {
  transform: rotate(45deg);
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  #categoryNavBtn {
    bottom: 30px;
    left: 20px;
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .category-dropdown {
    bottom: 150px;
    left: 20px;
    right: 20px;
    min-width: auto;
    max-height: 100%;
  }

  .category-dropdown-header {
    padding: 12px 15px;
    font-size: 15px;
  }

  .category-link {
    padding: 10px 15px;
  }

  .category-name {
    font-size: 13px;
  }
}