  /* Все стили привязаны к главному классу блока */
  .uc-hero-section {
    font-family: 'Inter', sans-serif;
  }

  /* Контейнер для отступов */
  .uc-hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Баннер */
  .uc-hero-section .hero-banner {
    background: linear-gradient(135deg, #007bff 0%, #00c6ff 100%);
    color: white;
    border-radius: 12px;
    margin-top: 20px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
  }

  /* Контент */
  .uc-hero-section .hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
  }

  /* Заголовок */
  .uc-hero-section .hero-title {
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 15px 0;
    line-height: 1.1;
  }

  /* Текст */
  .uc-hero-section .hero-text {
    font-size: 16px;
    margin: 0 0 25px 0;
    opacity: 0.9;
  }

  /* Кнопка */
  .uc-hero-section .hero-btn {
    background: white!important;
    color: #007bff!important;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
  }

  .uc-hero-section .hero-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }

  /* Декоративный круг */
  .uc-hero-section .hero-circle {
    position: absolute;
    right: -50px;
    bottom: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
  }

  /* Адаптивность */
  @media (max-width: 768px) {
    .uc-hero-section .hero-banner {
      padding: 40px 20px;
    }
    
    .uc-hero-section .hero-title {
      font-size: 26px;
    }
    
    .uc-hero-section .hero-text {
      font-size: 14px;
    }
    
    .uc-hero-section .hero-circle {
      width: 250px;
      height: 250px;
      right: -50px;
      bottom: -50px;
    }
  }

  @media (max-width: 480px) {
    .uc-hero-section .hero-banner {
      padding: 30px 15px;
    }
    
    .uc-hero-section .hero-btn {
      padding: 10px 20px;
      font-size: 14px;
    }
  }
  
  
/*HEADER */
/* Обертка */
.uc-header-block {
  font-family: 'Inter', sans-serif;
  width: 100%;
}

/* Контейнер без конфликта с Tilda */
.uc-header-block .uc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TOP BAR */
.uc-header-block .top-bar {
  background: #212529;
  color: #ccc!important;
  font-size: 12px;
  padding: 8px 0;
  text-align: center;
}

/* HEADER */
.uc-header-block .uc-header {
  background: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #dee2e6;
}

/* FLEX ROW */
.uc-header-block .header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ЛОГО */
.uc-header-block .logo {
  font-size: 24px;
  font-weight: 900;
  color: #007bff!important;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

/* ПОИСК */
.uc-header-block .search-bar {
  flex: 1;
  max-width: 400px;
}

.uc-header-block .search-input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  background: #f1f3f5;
  font-size: 14px;
}

/* НАВИГАЦИЯ */
.uc-header-block .nav-links {
  display: flex;
  gap: 20px;
}

.uc-header-block .nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: #555!important;
  text-decoration: none;
}

.uc-header-block .nav-links a:hover {
  color: #007bff!important;
}

/* ИКОНКИ */
.uc-header-block .header-icons {
  display: flex;
  gap: 20px;
  font-size: 18px;
}

.uc-header-block .icon-link {
  color: #555;
  text-decoration: none;
}

/* МОБИЛЬНАЯ ВЕРСИЯ */
@media (max-width: 980px) {
  .uc-header-block .search-bar,
  .uc-header-block .nav-links {
    display: none;
  }

  .uc-header-block .logo {
    font-size: 20px;
  }
}


/* ===== TOTALSHOP GRID BLOCK ===== */

.uc-products-section {
  width: 100%;
  padding: 40px 0 !important;
  background: #f8f9fa !important;
}

.uc-products-section .uc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* GRID как в твоём примере */
.uc-products-section .uc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

/* CARD */
.uc-products-section .uc-card {
  background: #ffffff !important;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dee2e6 !important;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: #333 !important;
}

.uc-products-section .uc-card:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

/* IMAGE */
.uc-products-section .uc-card-img-wrap {
  height: 220px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.uc-products-section .uc-card-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* BADGE */
.uc-products-section .uc-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #dc3545 !important;
  color: #ffffff !important;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
}

/* INFO */
.uc-products-section .uc-card-info {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.uc-products-section .uc-card-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #333 !important;
}

.uc-products-section .uc-card-bottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.uc-products-section .uc-price {
  font-size: 18px;
  font-weight: 800;
  color: #333 !important;
}

.uc-products-section .uc-old-price {
  font-size: 13px;
  text-decoration: line-through;
  color: #999 !important;
  margin-left: 6px;
}

.uc-products-section .uc-btn-cart {
  background: #007bff !important;
  color: #ffffff !important;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== АДАПТИВ ===== */

/* до 600px → 2 карточки */
@media (max-width: 600px) {
  .uc-products-section .uc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .uc-products-section .uc-card-img-wrap {
    height: 160px;
  }

  .uc-products-section .uc-card-name {
    font-size: 14px;
  }

  .uc-products-section .uc-price {
    font-size: 16px;
  }
}

/* до 480px → 1 карточка */
@media (max-width: 480px) {
  .uc-products-section .uc-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== UC Thank You Page ===== */
.uc-thankyou-page {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #f9f9f9 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: 0;
  box-sizing: border-box;
}

.uc-thankyou-page .uc-container {
  max-width: 600px;
  width: 100%;
  background: #ffffff;
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid #E5E7EB;
}

/* Иконка успеха */
.uc-success-icon {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.uc-check-circle {
  width: 100px;
  height: 100px;
  background: #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: uc-scaleIn 0.5s ease;
}

.uc-check {
  font-size: 48px;
  color: white;
  line-height: 1;
  font-weight: 700;
}

/* Заголовок */
.uc-thankyou-title {
  font-size: 36px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

/* Текст */
.uc-thankyou-text {
  font-size: 18px;
  line-height: 1.6;
  color: #4B5563;
  margin: 0 0 20px 0;
}

.uc-thankyou-highlight {
  font-size: 20px;
  font-weight: 600;
  color: #2563EB;
  background: #EFF6FF;
  padding: 15px 20px;
  border-radius: 12px;
  margin: 25px 0;
  border-left: 4px solid #2563EB;
}

/* Кнопка */
.uc-home-btn {
  display: inline-block;
  padding: 16px 32px;
  background: #000000;
  color: white !important;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  margin: 20px 0;
  transition: 0.3s;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.uc-home-btn:hover {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Информационный блок */
.uc-info-block {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #E5E7EB;
}

.uc-info-text {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.8;
}

.uc-phone-link,
.uc-email-link {
  color: #2563EB !important;
  text-decoration: none;
  font-weight: 500;
}

.uc-phone-link:hover,
.uc-email-link:hover {
  text-decoration: underline;
}

/* Анимация */
@keyframes uc-scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Адаптивность */
@media (max-width: 768px) {
  .uc-thankyou-page .uc-container {
    padding: 40px 20px;
  }
  
  .uc-thankyou-title {
    font-size: 28px;
  }
  
  .uc-thankyou-text {
    font-size: 16px;
  }
  
  .uc-thankyou-highlight {
    font-size: 18px;
    padding: 12px 15px;
  }
  
  .uc-check-circle {
    width: 80px;
    height: 80px;
  }
  
  .uc-check {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .uc-thankyou-title {
    font-size: 24px;
  }
  
  .uc-thankyou-highlight {
    font-size: 16px;
  }
  
  .uc-home-btn {
    padding: 14px 28px;
    font-size: 14px;
    width: 100%;
  }
}

/* Для темной темы браузера - сохраняем стиль */
@media (prefers-color-scheme: dark) {
  .uc-thankyou-page .uc-container {
    background: #ffffff; /* Оставляем белым, как в дизайне */
  }
}