 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Inter', sans-serif;
      background: #f5f7f5;
      color: #1a1f1a;
      line-height: 1.5;
    }
    
    .wrapper {
      max-width: 100%;
      overflow-x: hidden;
    }
    
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* ========== ЛОГОТИП (текстовый, как просили) ========== */
    .logo {
      display: flex;
      align-items: center;
      gap: 0;
      background: #000000;
      padding: 6px 12px;
      border-radius: 60px;
      text-decoration: none;
      width: fit-content;
    }
    
    .logo__hab {
      color: #ffffff;
      font-size: 24px;
      font-weight: 700;
      letter-spacing: 0.5px;
    }
    
    .logo__stor {
      background: #2e7d32;
      color: #ffffff;
      font-size: 24px;
      font-weight: 700;
      padding: 0 12px;
      border-radius: 5px;
      margin-left: 4px;
      letter-spacing: 0.5px;
    }
    
    @media (max-width: 480px) {
      .logo__hab, .logo__stor {
        font-size: 20px;
      }
      .logo {
        padding: 4px 10px;
      }
      .logo__stor {
        padding: 0 10px;
      }
    }
    
    /* ========== НАВИГАЦИЯ (чёрно-зелёная тема) ========== */
    .menu {
      background: #000000;
      padding: 12px 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid #2e7d32;
    }
    
    .menulog {
      display: none; /* скрываем старую картинку, используем новый логотип */
    }
    
    .menu__links-item {
      color: #e0e0e0;
      font-weight: 500;
      font-size: 15px;
      padding: 8px 16px;
      text-decoration: none;
      transition: all 0.2s ease;
      border-radius: 40px;
    }
    
    .menu__links-item:hover {
      background: #2e7d32;
      color: #ffffff;
    }
    
    /* Бургер-меню */
    .menu__icon {
      display: none;
      width: 40px;
      height: 32px;
      position: relative;
      cursor: pointer;
    }
    
    .menu__icon span {
      display: block;
      position: absolute;
      height: 3px;
      width: 100%;
      background: #ffffff;
      border-radius: 4px;
      transition: 0.25s ease;
    }
    
    .menu__icon span:nth-child(1) { top: 0; }
    .menu__icon span:nth-child(2), .menu__icon span:nth-child(3) { top: 12px; }
    .menu__icon span:nth-child(4) { top: 24px; }
    
    .menu.menu_state_open .menu__icon span:nth-child(1) {
      top: 12px;
      width: 0;
      left: 50%;
    }
    .menu.menu_state_open .menu__icon span:nth-child(2) {
      transform: rotate(45deg);
    }
    .menu.menu_state_open .menu__icon span:nth-child(3) {
      transform: rotate(-45deg);
    }
    .menu.menu_state_open .menu__icon span:nth-child(4) {
      top: 12px;
      width: 0;
      left: 50%;
    }
    
    @media screen and (max-width: 999px) {
      .menu {
        padding: 12px 20px;
      }
      .menu__icon {
        display: inline-block;
      }
      .menu__links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #000000;
        border-top: 1px solid #2e7d32;
        display: none;
        flex-direction: column;
        padding: 20px 0;
        gap: 8px;
        z-index: 99;
      }
      .menu.menu_state_open .menu__links {
        display: flex;
      }
      .menu__links-item {
        color: #ffffff;
        text-align: center;
        font-size: 16px;
        padding: 12px;
      }
      .menu__links-item:hover {
        background: #2e7d32;
      }
    }
    
    /* ========== ГЕРОЙ-СЕКЦИЯ (чёрный фон + зелёные акценты) ========== */
    .desc {
      background: linear-gradient(135deg, #0a0f0a 0%, #1a2a1a 100%);
      padding: 70px 0;
      text-align: center;
      color: white;
      border-bottom: 3px solid #2e7d32;
    }
    
    .desc__title {
      font-size: 52px;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }
    
    .desc__title span {
      color: #4caf50;
    }
    
    .desc__text {
      max-width: 720px;
      margin: 0 auto;
      font-size: 18px;
      line-height: 1.6;
      opacity: 0.92;
    }
    
    .desc__text big {
      font-size: 32px;
      display: inline-block;
      animation: bounce 1.5s infinite;
      color: #4caf50;
    }
    
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(8px); }
    }
    
    /* ========== ЗАГОЛОВКИ ========== */
    .title {
      font-size: 32px;
      font-weight: 700;
      text-align: center;
      margin: 48px 0 32px;
      position: relative;
      color: #1a2a1a;
    }
    
    .title:after {
      content: '';
      display: block;
      width: 70px;
      height: 3px;
      background: #2e7d32;
      margin: 12px auto 0;
      border-radius: 4px;
    }
    
    /* ========== СЕТКА ТОВАРОВ ========== */
    .produkt__items {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 28px;
      margin: 20px 0 40px;
    }
    
    .produkt__item {
      background: #ffffff;
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
      border: 1px solid #e8f0e8;
    }
    
    .produkt__item:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 28px -12px rgba(46, 125, 50, 0.25);
      border-color: #2e7d32;
    }
    
    .produkt__wrapp {
      text-decoration: none;
      display: block;
      padding: 16px;
    }
    
    .produkt__img {
      background: #fafdfa;
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 1 / 1;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
    
    .produkt__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    
    .produkt__item:hover .produkt__img img {
      transform: scale(1.02);
    }
    
    .produkt__text {
      font-weight: 600;
      font-size: 16px;
      color: #1a2a1a;
      margin: 8px 0 6px;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    
    .produkt__price {
      font-size: 20px;
      font-weight: 700;
      color: #2e7d32;
      margin-top: 8px;
      display: flex;
      align-items: baseline;
      gap: 4px;
    }
    
    .produkt__price:before {
      content: 'BYN';
      font-size: 16px;
      font-weight: 500;
    }
    
    /* ========== ФУТЕР ========== */
    .footer {
      background: #0a100a;
      color: #bdcfbd;
      margin-top: 40px;
      padding: 32px 0 24px;
      font-size: 14px;
      border-top: 1px solid #2e7d32;
    }
    
    .footer a {
      color: #4caf50;
      text-decoration: none;
      transition: 0.2s;
    }
    
    .footer a:hover {
      color: #81c784;
      text-decoration: underline;
    }
    
    .footer p {
      margin: 8px 0;
    }
    
    /* ========== АДАПТИВ ========== */
    @media (max-width: 768px) {
      .desc__title {
        font-size: 38px;
      }
      .desc__text {
        font-size: 16px;
        padding: 0 16px;
      }
      .title {
        font-size: 26px;
        margin: 32px 0 20px;
      }
      .produkt__items {
        gap: 16px;
      }
    }
    
    @media (max-width: 480px) {
      .produkt__items {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
      }
      .produkt__wrapp {
        padding: 12px;
      }
      .produkt__text {
        font-size: 14px;
      }
      .produkt__price {
        font-size: 17px;
      }
    }
    
    /* скрываем ненужные старые блоки */
    .header, .block-bf__sale1, .three-years, .slider-img, .hit-slider {
      display: none;
    }