.hero-fullscreen {
  position: relative;
  width: 100%;
  height: 400px;
  background: url('/image/catalog/slideshow/slider-1.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  overflow: hidden;
}

.hero-fullscreen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.hero-fullscreen .hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 800px;
}

.hero-fullscreen .hero-content h1 {
  color:#fff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 15px;
}

.hero-fullscreen .hero-content p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 25px;
  color: #e5e5e5;
}

.hero-fullscreen .hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-fullscreen .hero-buttons a {
  background: #0089ff;
  color: #fff;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-fullscreen .hero-buttons a.secondary {
  background: #ffffff;
  color: #2b2d42;
}

.hero-fullscreen .hero-buttons a:hover {
  color: #fff;
  background: #006fc7;
}

@media (max-width: 992px) {
  .hero-fullscreen {
    height: auto;
    padding: 60px 20px;
  }
  .hero-fullscreen .hero-content h1 {
    font-size: 26px;
  }
  .hero-fullscreen .hero-content p {
    font-size: 15px;
  }
}








.category-hero {
  position: relative;
  background-size: cover;
  background-position: center center;
  min-height: 360px;
  padding: 60px 20px;
  margin-bottom: 30px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fadeInBg 1s ease forwards;
}

.category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.category-hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 960px;
  width: 100%;
  animation: slideUp 0.9s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.glass-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.category-hero-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.category-hero-subtitle {
  font-size: 16px;
  margin-bottom: 24px;
  color: #e5ecf2;
}

.category-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.category-hero-btn {
  position: relative;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  min-width: 170px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  overflow: hidden;
}

.category-hero-btn:hover {
  background: #fff;
  color: #2b2b2b;
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.category-hero-btn.whatsapp {
  background: #25D366;
  border: none;
}

.category-hero-btn.whatsapp:hover {
  background: #1ebc59;
  color: white;
}

.category-hero-btn.call {
  background: #0089ff;
  border: none;
}

.category-hero-btn.call:hover {
  background: #0075db;
  color: white;
}

.icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}

/* Анимации */
@keyframes fadeInBg {
  0% { opacity: 0; transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1); }
}

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