  body {
      font-family: 'Inter', sans-serif;
      background-color: #080808;
      color: #f0f0f0;
      transition: all 0.3s ease;
  }
  h1, h2, h3, h4, h5, h6, .font-display {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
  }
  
  /* HERO BACKGROUND: Чистый CSS-эффект прожектора */
  .hero-bg {
      background-color: #000000;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
  }
  
  .hero-bg::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #000000;
      background-image: radial-gradient(circle at 50% 50%, rgba(40, 40, 40, 0.8) 0%, rgba(0, 0, 0, 1) 75%);
      z-index: 0;
  }

  .hero-bg::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to bottom, rgba(8,8,8,0.2) 0%, rgba(8,8,8,1) 100%);
      z-index: 1;
  }

  .hero-content {
      position: relative;
      z-index: 10;
  }

  .product-card {
      background-color: #1a1a1a;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 10px rgba(240, 240, 240, 0.1);
  }
  
  /* Кнопки на карточке теперь не нужно скрывать/показывать при hover, они всегда видимы */

  .placeholder-img {
      background-color: #2b2b2b;
      background-color: snow;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #555;
      font-size: 0.875rem;
  }
  .nav-link {
      transition: color 0.3s ease;
      cursor: pointer;
  }
  .nav-link:hover {
      color: #a0a0a0;
  }
  .cta-button {
      background-color: #f0f0f0;
      color: #080808;
      transition: background-color 0.3s ease, color 0.3s ease;
  }
  .cta-button:hover {
      background-color: #c0c0c0;
  }
  .cta-button-outline {
      border: 1px solid #f0f0f0;
      color: #f0f0f0;
      transition: background-color 0.3s ease, color 0.3s ease;
  }
  .cta-button-outline:hover {
      background-color: #f0f0f0;
      color: #080808;
  }
  .header-transition {
      transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  }
  .modal-overlay {
      background-color: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(5px);
      z-index: 9999;
  }
  
  .scrollbar-hide::-webkit-scrollbar {
      display: none;
  }
  .scrollbar-hide {
      -ms-overflow-style: none;
      scrollbar-width: none;
  }

  /* Cart Drawer Styles */
  #cart-drawer {
      transition: transform 0.3s ease-in-out;
      transform: translateX(100%);
      z-index: 55;
  }
  #cart-drawer.open {
      transform: translateX(0);
  }
  #cart-overlay {
      background-color: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(3px);
      z-index: 50;
  }
  .yo-photo {
  		background-image: url(../img/noroot.jpg);
  		background-size: auto;
  		background-repeat: no-repeat;
  		background-size: cover;
  		background-position: center top;
  }
  
  /* Стили для тегов категорий */
  .category-tag {
      display: inline-block;
      padding: 2px 8px;
      border-radius: 9999px; /* Full rounded corners */
      background-color: #2b2b2b; /* Темный фон */
      color: #a0a0a0; /* Светлый текст */
      font-size: 10px; /* Очень маленький шрифт */
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
  }

.course-content h2,
.course-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
}

.course-content h2 {
    font-size: 2rem;
}

.course-content h3 {
    font-size: 1.5rem;
}

.course-content p {
    margin-top: 1rem;
}

.course-content ul,
.course-content ol {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.course-content li + li {
    margin-top: 0.5rem;
}

.course-content strong {
    color: #ffffff;
}

.product-card {
    height: 100%;
}


.course-content h2,
.course-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
}

.course-content h2 {
    font-size: 2rem;
}

.course-content h3 {
    font-size: 1.5rem;
}

.course-content p {
    margin-top: 1rem;
}

.course-content ul,
.course-content ol {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.course-content li + li {
    margin-top: 0.5rem;
}

.course-content strong {
    color: #ffffff;
}

.product-card {
    height: 100%;
}
