body {
      margin: 0;
      padding: 0;
      font-family: 'Arial', sans-serif;
      color: #000;
    }
    .logo {
        width: 100px;
        border-radius: 10px;
        margin: 10px 20px 10px 0;
    }

    /* Главный экран */
    .hero2 {
      height: 160px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      background: url('../images/bg.jpg') no-repeat center center/cover;
      position: relative;
      overflow: hidden;
    }
    .hero h1 {
        color: #fff;
    }
    .hero::after {
      content: '';
      position: absolute;
      top:0; left:0;
      width:100%; height:100%;
     
    }

    .hero h1 {
      position: relative;
      font-size: 3rem;
      z-index: 1;
      font-weight: bold;
    }

    /* Анимация звезд */
    .stars {
      position: absolute;
      width: 2px;
      height: 2px;
      background: white;
      border-radius: 50%;
      animation: twinkle 2s infinite alternate;
    }

    @keyframes twinkle {
      0% {opacity: 0.2;}
      50% {opacity: 1;}
      100% {opacity: 0.2;}
    }

    /* Блок категорий */
    .categories .card {
      background: #1a1b33;
      border: none;
      border-radius: 15px;
      color: #fff;
      text-align: center;
      transition: 0.3s;
    }

    .categories .card img {
      border-radius: 10px;
      width: 100%;
      margin-bottom: 15px;
    }

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

    /* Текстовый блок */
    .text-block {
      padding: 80px 0;
      text-align: center;
    }

    /* Сетка товаров */
    .products .card {
      background: #1a1b33;
      border: none;
      border-radius: 15px;
      color: #fff;
      text-align: center;
      transition: 0.3s;
    }

    .products .card img {
      border-radius: 10px;
      width: 100%;
      
      margin-bottom: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    }

    .products .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    /* Страница товара */
    .product-page {
      padding: 80px 0;
    }

    .product-page img {
      max-width: 100%;
      border-radius: 15px;
      margin-bottom: 20px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.6);
    }

    .product-page .btn-primary {
      background: #a12d5e;
      border: none;
      padding: 10px 30px;
      border-radius: 30px;
      transition: 0.3s;
    }

    .product-page .btn-primary:hover {
      background: #c13d7e;
    }

    /* Футер */
    footer {
  
      color: #000;
      text-align: center;
      padding: 40px 0;
    }

    footer a {
      color: #000;
      text-decoration: none;
      margin: 0 10px;
    }

    footer a:hover {
      color: #000;
      text-decoration: underline;
    }
    
 header .h1 {
     color: #fff;
     font-weight: bold;
 }   
@media(max-width: 992px){
    header .h1 {
        font-size: 22px;
    }
    .logo {
        width: 50px;
    }
    .hero {
        height: 100px;
    }
    .breadcrumb-item a, .breadcrumb-item {
        font-size: 12px;
    }
}