/* ===== ОБНОВЛЕННЫЙ CSS ДЛЯ "ПЕТРОВ ПРОДУКТ" ===== */
/* Оптимизированная версия без дубликатов */

/* ===== ПЕРЕМЕННЫЕ ЦВЕТОВ ===== */
:root {
  --primary-midnight: #1A2B4A;
  --primary-sapphire: #2C5282;
  --accent-amber: #ED8936;
  --accent-honey: #F6AD55;
  --accent-cream: #FEEBC8;
  --white: #ffffff;
  --text-dark: #2D3748;
  --text-light: #ffffff;
  --border-light: rgba(237, 137, 54, 0.3);
  --background-ivory: #fef7ed;
}

/* ===== ОСНОВНЫЕ СТИЛИ ===== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 80px;
}

body.no-scroll {
  overflow: hidden;
}

/* ===== ОСНОВНЫЕ СТИЛИ ХЕДЕРА ===== */
.header-modern {
  background: var(--primary-midnight);
  border-bottom: 2px solid var(--accent-amber);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.3s ease;
  font-family: 'TildaSans', Arial, sans-serif;
  width: 100%;
}

.header-modern.hidden {
  transform: translateY(-100%);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 80px;
}

/* Логотип */
.header-logo .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
}

.logo-img {
  height: 40px;
  margin-right: 12px;
}

.logo-text {
  font-family: 'TildaSans', Arial, sans-serif;
  color: var(--white);
}

/* Основная навигация */
.header-nav .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
  align-items: center;
}

.nav-item {
  display: flex;
  align-items: center;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  opacity: 0.9;
}

.nav-link:hover {
  color: var(--accent-amber);
  opacity: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-amber);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Выпадающее меню */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  color: var(--accent-amber);
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px 0;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(44, 24, 16, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 8px 20px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.dropdown-link:hover {
  background: rgba(237, 137, 54, 0.1);
  color: var(--accent-amber);
}

/* Контакты и действия */
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-contacts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  opacity: 0.9;
}

.contact-link:hover {
  color: var(--accent-amber);
  opacity: 1;
}

.contact-icon {
  flex-shrink: 0;
  color: var(--accent-amber);
}

/* Поиск */
.header-search {
  position: relative;
}

.search-toggle {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  min-height: 44px;
  min-width: 44px;
}

.search-toggle:hover {
  background: rgba(237, 137, 54, 0.2);
  color: var(--accent-amber);
}

.search-panel {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(44, 24, 16, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1003;
}

.search-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(8px);
}

.search-form {
  display: flex;
  gap: 8px;
  min-width: 300px;
}

.search-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
  color: var(--text-dark);
}

.search-input:focus {
  border-color: var(--accent-amber);
}

.search-submit {
  background: var(--accent-amber);
  border: none;
  border-radius: 6px;
  padding: 8px;
  color: var(--primary-midnight);
  cursor: pointer;
  transition: background 0.3s ease;
  font-weight: 500;
}

.search-submit:hover {
  background: var(--accent-honey);
}

/* Бургер-меню */
.burger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
  z-index: 1002;
  min-height: 44px;
  min-width: 44px;
}

.burger-menu span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: var(--accent-amber);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: var(--accent-amber);
}

/* Мобильное меню */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 20px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
  box-shadow: 0 8px 24px rgba(44, 24, 16, 0.1);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.mobile-nav-item {
  margin-bottom: 0;
  width: 100%;
  border-bottom: 1px solid rgba(237, 137, 54, 0.1);
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  transition: color 0.3s ease;
  width: 100%;
  min-height: 44px;
}

.mobile-nav-link:hover {
  color: var(--accent-amber);
}

.mobile-dropdown {
  display: none;
  background: rgba(237, 137, 54, 0.05);
  border-radius: 8px;
  margin: 8px 0;
  padding: 0 16px;
}

.mobile-dropdown.active {
  display: block;
}

.mobile-dropdown .mobile-nav-link {
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(237, 137, 54, 0.1);
}

.mobile-dropdown .mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-contacts {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  width: 100%;
}

.mobile-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
  padding: 8px 0;
  width: 100%;
}

.mobile-contact-link:hover {
  color: var(--accent-amber);
}

/* ===== СТИЛИ ДЛЯ БЛОКА ПРЕИМУЩЕСТВ ===== */
.advantages-block {
  background: linear-gradient(135deg, var(--background-ivory) 0%, var(--accent-cream) 100%);
}

.advantages-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.advantage-item {
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  padding: 30px 20px;
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 5px 20px rgba(42, 75, 141, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  border: 1px solid rgba(237, 137, 54, 0.1);
}

.advantage-item.animated {
  opacity: 1;
  transform: translateY(0);
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(42, 75, 141, 0.15);
  border-color: rgba(237, 137, 54, 0.2);
}

.advantage-icon {
  margin-bottom: 20px;
  font-size: 40px;
  color: var(--accent-amber);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.advantage-item:hover .advantage-icon {
  color: var(--primary-sapphire);
}

.advantage-digit {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-sapphire);
  line-height: 1;
  margin-bottom: 10px;
  font-family: 'TildaSans', Arial, sans-serif;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.advantage-item:hover .advantage-digit {
  color: var(--accent-amber);
}

.advantage-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-midnight);
  margin-bottom: 10px;
  font-family: 'TildaSans', Arial, sans-serif;
  transition: color 0.3s ease;
}

.advantage-item:hover .advantage-title {
  color: var(--accent-amber);
}

.advantage-descr {
  font-size: 14px;
  color: var(--text-dark);
  opacity: 0.8;
  line-height: 1.4;
  font-family: 'TildaSans', Arial, sans-serif;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1024px) {
  .header-nav .nav-menu {
    gap: 24px;
  }
  
  .nav-link {
    font-size: 15px;
  }
  
  .advantages-container {
    gap: 30px;
  }
  
  .advantage-item {
    min-width: 220px;
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  
  .header-container {
    padding: 0 16px;
    height: 70px;
  }
  
  .header-nav,
  .header-contacts {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .logo-text {
    display: none;
  }
  
  .search-panel {
    right: -50px;
    min-width: 280px;
  }
  
  .mobile-menu {
    top: 70px;
  }
  
  .advantages-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .advantage-item {
    width: 100%;
    max-width: 280px;
    padding: 25px 15px;
  }
  
  .advantage-icon {
    font-size: 35px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .advantage-digit {
    font-size: 36px;
    height: 40px;
    margin-bottom: 8px;
  }
  
  .advantage-title {
    font-size: 17px;
    margin-bottom: 8px;
  }
  
  .advantage-descr {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 12px;
  }
  
  .search-panel {
    right: -20px;
    min-width: 260px;
  }
  
  .search-form {
    min-width: 250px;
  }
  
  .advantage-item {
    max-width: 260px;
    padding: 20px 15px;
  }
  
  .advantage-icon {
    font-size: 32px;
    height: 45px;
  }
  
  .advantage-digit {
    font-size: 32px;
  }
  
  .advantage-title {
    font-size: 16px;
  }
}



/* Карточка товара */
.uc-product-card {
    background: linear-gradient(135deg, var(--background-ivory) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.uc-product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-cream) 0%, transparent 70%);
    opacity: 0.3;
}

.uc-product-card .t744__col_first {
    padding-right: 40px;
}

/* Галерея товара */
.uc-product-card .t-slds__bgimg {
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(26, 43, 74, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.uc-product-card .t-slds__bgimg:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(237, 137, 54, 0.2);
}

/* Информация о товаре */
.uc-product-card .t744__title {
    color: var(--primary-midnight);
    font-size: 32px !important;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-midnight), var(--primary-sapphire));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.uc-product-card .t744__descr {
    color: var(--text-dark);
    font-size: 16px !important;
    line-height: 1.6;
    margin: 24px 0;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--accent-amber);
    box-shadow: 0 4px 16px rgba(26, 43, 74, 0.08);
}

/* Кнопка "Узнать цену" */
.uc-product-card .t-btnflex {
    background: linear-gradient(135deg, var(--accent-amber), var(--accent-honey)) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 16px 32px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(237, 137, 54, 0.3) !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

.uc-product-card .t-btnflex::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.uc-product-card .t-btnflex:hover::before {
    left: 100%;
}

.uc-product-card .t-btnflex:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(237, 137, 54, 0.4) !important;
}

.uc-product-card .t-btnflex:active {
    transform: translateY(-1px) !important;
}

/* Вкладки */
.uc-tabs {
    background: var(--white);
}

.uc-tabs .t817__wrapper {
    border-bottom: 2px solid var(--border-light);
    background: var(--white);
}

.uc-tabs .t817__tab {
    background: transparent;
    border: none;
    margin: 0;
}

.uc-tabs .t817__tab-name {
    color: var(--text-dark) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 16px 24px;
    transition: all 0.3s ease;
    position: relative;
}

.uc-tabs .t817__tab_active .t817__tab-name {
    color: var(--accent-amber) !important;
    font-weight: 600 !important;
}

.uc-tabs .t817__tab_active::before {
    background: var(--accent-amber) !important;
    height: 3px !important;
    bottom: -2px !important;
}

.uc-tabs .t817__tab:not(.t817__tab_active):hover .t817__tab-name {
    color: var(--primary-sapphire) !important;
    opacity: 1 !important;
}

/* Контент вкладок */
.uc-tabs .t817__content {
    background: var(--white);
    border: 1px solid var(--border-light) !important;
    border-radius: 0 0 12px 12px;
    border-top: none !important;
    margin-top: -2px;
    box-shadow: 0 4px 20px rgba(26, 43, 74, 0.08);
}

.uc-tabs .t-text {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
}

/* Таблицы в характеристиках */
.uc-tabs .quill-table__table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.uc-tabs .quill-table__cell {
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    color: var(--text-dark);
}

.uc-tabs .quill-table__cell:first-child {
    background: var(--accent-cream);
    font-weight: 600;
    color: var(--primary-midnight);
    width: 40%;
}

.uc-tabs .quill-table__cell:nth-child(2) {
    background: var(--white);
    font-weight: 500;
}

/* Списки в составе */
.uc-tabs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.uc-tabs li[data-list="bullet"] {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.uc-tabs li[data-list="bullet"]::before {
    content: '•';
    color: var(--accent-amber);
    font-size: 20px;
    position: absolute;
    left: 8px;
    top: -2px;
}

/* Попап форма */
.t702__wrapper {
    background: var(--white) !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 60px rgba(26, 43, 74, 0.2) !important;
    border: 1px solid var(--border-light);
}

.t702__title {
    color: var(--primary-midnight) !important;
    font-weight: 600 !important;
    margin-bottom: 24px !important;
}

/* Поля формы */
.t-input {
    border: 2px solid var(--border-light) !important;
    border-radius: 10px !important;
    padding: 14px 16px !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    background: var(--white) !important;
}

.t-input:focus {
    border-color: var(--accent-amber) !important;
    box-shadow: 0 0 0 3px rgba(237, 137, 54, 0.1) !important;
    outline: none !important;
}

.t-checkbox__control {
    color: var(--text-dark) !important;
    font-size: 14px !important;
}

.t-checkbox__control a {
    color: var(--accent-amber) !important;
    text-decoration: none;
}

.t-checkbox__control a:hover {
    text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .uc-product-card .t744__title {
        font-size: 24px !important;
    }
    
    .uc-product-card .t744__col_first {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .uc-product-card .t-btnflex {
        width: 100%;
        justify-content: center;
    }
    
    .uc-tabs .t817__tab-name {
        padding: 12px 16px;
        font-size: 14px !important;
    }
    
    .uc-tabs .quill-table__cell {
        padding: 8px 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
   
       .uc-product-card .t744__descr {
        padding: 16px;
        font-size: 14px !important;
    }
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.uc-product-card,
.uc-tabs {
    animation: fadeInUp 0.6s ease-out;
}


/* Дополнительные декоративные элементы */
.uc-product-card .t744__info::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0C57.5 0 64.5 2.5 70 7C75.5 11.5 79 18 80 25C81 32 79.5 39 75.5 45C71.5 51 65 55 58 56.5C51 58 43.5 57 37 54C30.5 51 25 46 21 39.5C17 33 15 25.5 15.5 18C16 10.5 19 4.5 24 0.5C29 -3.5 35.5 -5 43 -4.5C50.5 -4 57.5 -1 63 4C68.5 9 72 16 73 23.5C74 31 72.5 38.5 68.5 44.5C64.5 50.5 58.5 54.5 51.5 55.5C44.5 56.5 37.5 54.5 32 50C26.5 45.5 22.5 39 21 31.5C19.5 24 20.5 16.5 24 10C27.5 3.5 33 -1 40 -2C47 -3 54 -1.5 60 2.5C66 6.5 70 13 71.5 20.5C73 28 72 35.5 68.5 41.5C65 47.5 59 51.5 52 52.5C45 53.5 38 51.5 33 47C28 42.5 25 36 24.5 29C24 22 26 15.5 30 10.5C34 5.5 40 2.5 47 2C54 1.5 61 3.5 66.5 7.5C72 11.5 75.5 17.5 76.5 24.5C77.5 31.5 75.5 38.5 71 44C66.5 49.5 59.5 53 52 53C44.5 53 37.5 50 33 45C28.5 40 26 33.5 26.5 26.5C27 19.5 30 13.5 35 9C40 4.5 46.5 2 53.5 2.5C60.5 3 66.5 6 70.5 10.5C74.5 15 76 21 75 27C74 33 70.5 38 65 41C59.5 44 52.5 45 46 43C39.5 41 34 36 31 30C28 24 27 17 29 10.5C31 4 35 -1 41 -2.5C47 -4 54 -2.5 59 1C64 4.5 67 10 68 16C69 22 67.5 28 64 32.5C60.5 37 55 40 49 40C43 40 37.5 37 34 32.5C30.5 28 29 22 30 16.5C31 11 34 6.5 38.5 3.5C43 0.5 48.5 -0.5 54 0.5C59.5 1.5 64 4.5 66.5 9C69 13.5 69.5 19 68 24C66.5 29 63 33 58 35C53 37 47 37 42 35C37 33 33 29 31 24C29 19 29 13.5 31 9C33 4.5 36.5 1 41 -0.5C45.5 -2 50.5 -1.5 54.5 0.5C58.5 2.5 61 6 62 10C63 14 62.5 18 60.5 21.5C58.5 25 55 27.5 51 28.5C47 29.5 42.5 29 39 26.5C35.5 24 33 20 32.5 15.5C32 11 33.5 6.5 36.5 3.5C39.5 0.5 43.5 -0.5 47.5 0.5C51.5 1.5 54.5 4.5 56 8.5C57.5 12.5 57 17 55 20.5C53 24 49.5 26.5 45.5 27C41.5 27.5 37.5 26 35 23C32.5 20 31.5 16 32.5 12C33.5 8 36 4.5 39.5 2.5C43 0.5 47 0 50.5 1.5C54 3 56.5 6 57.5 10C58.5 14 57.5 18 55 21C52.5 24 48.5 25.5 44.5 25C40.5 24.5 37 22 35.5 18.5C34 15 34 11 36 8C38 5 41 3 44.5 2.5C48 2 51 3.5 53 6C55 8.5 55.5 12 54.5 15C53.5 18 51 20 48 20.5C45 21 42 19.5 40.5 17C39 14.5 39 11.5 40.5 9C42 6.5 44.5 5 47.5 5C50.5 5 53 7 54 9.5C55 12 54.5 15 52.5 17C50.5 19 47.5 19.5 45 18.5C42.5 17.5 41 15 41 12.5C41 10 42.5 8 44.5 7C46.5 6 49 6.5 50.5 8C52 9.5 52 12 50.5 13.5C49 15 46.5 15 45 13.5C43.5 12 43.5 9.5 45 8C46.5 6.5 49 6.5 50.5 8Z' fill='%23FEEBC8' fill-opacity='0.3'/%3E%3C/svg%3E") no-repeat;
    opacity: 0.6;
    z-index: 0;
}

/* Скрываем пустой блок дополнительного описания */
.uc-product-card .js-store-prod-text:empty {
    display: none;
}

/* Или стилизовать, если он будет заполнен */
.uc-product-card .js-store-prod-text:not(:empty) {
    background: var(--accent-cream);
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
    border-left: 3px solid var(--accent-amber);
}

/*СТИЛИЗАЦИЯ КАТАЛОГА*/
/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ КАТАЛОГА ===== */

/* Обложка каталога */
.uc-catalog-hero {
    position: relative;
    overflow: hidden;
}

.uc-catalog-hero .t-cover__carrier {
    background-size: cover !important;
    background-position: center !important;
}

.uc-catalog-hero .t-cover__filter {
    background: linear-gradient(135deg, 
        rgba(26, 43, 74, 0.4) 0%,     /* Уменьшил с 0.8 до 0.4 */
        rgba(44, 82, 130, 0.3) 100%) !important; /* Уменьшил с 0.6 до 0.3 */
}

.uc-catalog-hero .t001__title {
    color: var(--white) !important;
    font-size: 48px !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px !important;
}

.uc-catalog-hero .t-cover__arrow svg {
    fill: var(--accent-amber) !important;
}


/* Сетка продуктов */
.uc-products-grid {
    background: var(--white) !important;
    position: relative;
}

.uc-products-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--border-light) 50%, 
        transparent 100%);
}

/* Боковая панель фильтров */
.uc-products-grid .t951__sidebar {
    background: var(--white) !important;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(26, 43, 74, 0.08);
    border: 1px solid var(--border-light);
    padding: 24px !important;
}

.uc-products-grid .t-store__filter__item-title {
    color: var(--primary-midnight) !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    margin-bottom: 12px;
}

.uc-products-grid .t-store__filter__checkbox {
    color: var(--text-dark) !important;
    padding: 8px 0;
    border-bottom: 1px solid rgba(237, 137, 54, 0.1);
    transition: all 0.3s ease;
}

.uc-products-grid .t-store__filter__checkbox:hover {
    color: var(--accent-amber) !important;
    background: rgba(237, 137, 54, 0.05);
    padding-left: 8px;
}

.uc-products-grid .t-checkbox__indicator {
    border: 2px solid var(--border-light);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.uc-products-grid .t-checkbox:checked + .t-checkbox__indicator {
    background: var(--accent-amber);
    border-color: var(--accent-amber);
}

/* Карточки товаров */
.uc-products-grid .t-store__card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(26, 43, 74, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.uc-products-grid .t-store__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(237, 137, 54, 0.15);
    border-color: var(--accent-amber);
}

.uc-products-grid .t-store__card__imgwrapper {
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.uc-products-grid .t-store__card__bgimg {
    border-radius: 16px 16px 0 0;
    transition: all 0.5s ease;
}

.uc-products-grid .t-store__card:hover .t-store__card__bgimg {
    transform: scale(1.05);
}

.uc-products-grid .t-store__card__textwrapper {
    padding: 20px;
    background: var(--white);
}

.uc-products-grid .t-store__card__title {
    color: var(--primary-midnight) !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1.3;
    margin-bottom: 8px;
    
    height: 46px;
    min-height: 46px;
    max-height: 46px;
    display: block;
    overflow: hidden;
    word-wrap: break-word;
}

/* Медиа-запросы для разных экранов */
@media (max-width: 1200px) {
    .uc-products-grid .t-store__card__title {
        font-size: 16px !important;
    }
}

.uc-products-grid .t-store__card__descr {
    color: var(--text-dark) !important;
    font-size: 14px !important;
    line-height: 1.5;
    opacity: 0.8;
    margin-bottom: 12px;
}

.uc-products-grid .t-store__card__price-wrapper {
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
    margin-top: 12px;
}

/* Кнопка "Загрузить еще" */
.uc-products-grid .t-store__load-more-btn {
    background: linear-gradient(135deg, var(--accent-amber), var(--accent-honey)) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 16px 32px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(237, 137, 54, 0.3) !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

.uc-products-grid .t-store__load-more-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(237, 137, 54, 0.4) !important;
}

.uc-products-grid .t-store__load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.uc-products-grid .t-store__load-more-btn:hover::before {
    left: 100%;
}

/* Попап товара */
.uc-products-grid .t-popup {
    background: rgba(26, 43, 74, 0.8) !important;
}

.uc-products-grid .t-popup__container {
    background: var(--white) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(26, 43, 74, 0.3) !important;
    border: 1px solid var(--border-light);
}

.uc-products-grid .t-store__prod-popup__name {
    color: var(--primary-midnight) !important;
    font-weight: 700 !important;
}

.uc-products-grid .t-popup__close-icon {
    fill: var(--accent-amber) !important;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.uc-products-grid .t-store__card {
    animation: fadeInUp 0.6s ease-out;
}

/* Адаптивность */
@media (max-width: 768px) {
    .uc-catalog-hero .t001__title {
        font-size: 32px !important;
    }
    
    .uc-products-grid .t951__sidebar {
        margin: 20px !important;
        border-radius: 12px;
    }
    
    .uc-products-grid .t-store__card {
        margin-bottom: 20px;
    }
    
    .uc-products-grid .t-store__card__title {
        font-size: 16px !important;
        min-height: auto;
    }
}

@media (max-width: 480px) {
  
    .uc-products-grid .t-store__load-more-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Декоративные элементы */
.uc-products-grid::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--border-light) 50%, 
        transparent 100%);
}

/* Заголовок категории в фильтрах */
.uc-products-grid .t-store__filter__opts-mob-btn {
    background: var(--accent-amber) !important;
    color: var(--white) !important;
    border-radius: 8px;
    padding: 12px 16px;
    font-weight: 600;
}

/* Индикатор количества найденных товаров */
.uc-products-grid .t-store__filter__prods-number {
    color: var(--accent-amber) !important;
    font-weight: 600;
}

/* Кнопка сброса фильтров */
.uc-products-grid .t-store__filter__reset {
    color: var(--accent-amber) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.uc-products-grid .t-store__filter__reset:hover {
    color: var(--primary-midnight) !important;
}

/* Добавьте этот CSS в ваш сайт */
#form1456912501 {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0.01 !important;
    pointer-events: none !important;
}

/* ===== СТИЛИ ДЛЯ КНОПКИ ОТПРАВИТЬ С ЭФФЕКТАМИ ===== */
.t-submit[type="submit"],
.t-form__submit[type="submit"],
.t-btn[type="submit"] {
    background: linear-gradient(135deg, var(--accent-amber), var(--accent-honey)) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 16px 40px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    color: var(--white) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(237, 137, 54, 0.3) !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
    cursor: pointer !important;
    min-height: 54px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Эффект свечения при hover */
.t-submit[type="submit"]:hover,
.t-form__submit[type="submit"]:hover,
.t-btn[type="submit"]:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(237, 137, 54, 0.4) !important;
    background: linear-gradient(135deg, var(--accent-honey), var(--accent-amber)) !important;
}

/* Эффект нажатия */
.t-submit[type="submit"]:active,
.t-form__submit[type="submit"]:active,
.t-btn[type="submit"]:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(237, 137, 54, 0.5) !important;
}

/* Анимация блеска */
.t-submit[type="submit"]::before,
.t-form__submit[type="submit"]::before,
.t-btn[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.t-submit[type="submit"]:hover::before,
.t-form__submit[type="submit"]:hover::before,
.t-btn[type="submit"]:hover::before {
    left: 100%;
}

/* Эффект пульсации для привлечения внимания */
@keyframes pulseSubmit {
    0% {
        box-shadow: 0 4px 20px rgba(237, 137, 54, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(237, 137, 54, 0.5);
    }
    100% {
        box-shadow: 0 4px 20px rgba(237, 137, 54, 0.3);
    }
}

.t-submit[type="submit"]:focus,
.t-form__submit[type="submit"]:focus,
.t-btn[type="submit"]:focus {
    animation: pulseSubmit 2s infinite !important;
    outline: none !important;
}

/* Эффект загрузки */
.t-submit[type="submit"].t-form__submit_loading,
.t-form__submit[type="submit"].t-form__submit_loading,
.t-btn[type="submit"].t-form__submit_loading {
    position: relative;
    color: transparent !important;
}

.t-submit[type="submit"].t-form__submit_loading::after,
.t-form__submit[type="submit"].t-form__submit_loading::after,
.t-btn[type="submit"].t-form__submit_loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spinSubmit 1s linear infinite;
}

@keyframes spinSubmit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Эффект успешной отправки */
.t-submit[type="submit"].t-form__submit_success,
.t-form__submit[type="submit"].t-form__submit_success,
.t-btn[type="submit"].t-form__submit_success {
    background: linear-gradient(135deg, #48BB78, #38A169) !important;
    box-shadow: 0 4px 20px rgba(72, 187, 120, 0.3) !important;
}

.t-submit[type="submit"].t-form__submit_success::before,
.t-form__submit[type="submit"].t-form__submit_success::before,
.t-btn[type="submit"].t-form__submit_success::before {
    content: '✓';
    position: absolute;
    color: var(--white);
    font-size: 18px;
    font-weight: bold;
    animation: bounceInSubmit 0.6s ease;
}

@keyframes bounceInSubmit {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Эффект ошибки */
.t-submit[type="submit"].t-form__submit_error,
.t-form__submit[type="submit"].t-form__submit_error,
.t-btn[type="submit"].t-form__submit_error {
    background: linear-gradient(135deg, #F56565, #E53E3E) !important;
    box-shadow: 0 4px 20px rgba(245, 101, 101, 0.3) !important;
    animation: shakeSubmit 0.5s ease;
}

@keyframes shakeSubmit {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Отключенное состояние */
.t-submit[type="submit"]:disabled,
.t-form__submit[type="submit"]:disabled,
.t-btn[type="submit"]:disabled {
    background: linear-gradient(135deg, #CBD5E0, #A0AEC0) !important;
    box-shadow: 0 2px 10px rgba(160, 174, 192, 0.2) !important;
    transform: none !important;
    cursor: not-allowed !important;
    opacity: 0.7;
}

/* Иконка отправки */
.t-submit[type="submit"] .t-btn__icon,
.t-form__submit[type="submit"] .t-btn__icon,
.t-btn[type="submit"] .t-btn__icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.t-submit[type="submit"]:hover .t-btn__icon,
.t-form__submit[type="submit"]:hover .t-btn__icon,
.t-btn[type="submit"]:hover .t-btn__icon {
    transform: translateX(3px);
}

/* Адаптивность для кнопки */
@media (max-width: 768px) {
    .t-submit[type="submit"],
    .t-form__submit[type="submit"],
    .t-btn[type="submit"] {
        padding: 14px 32px !important;
        font-size: 15px !important;
        min-height: 50px !important;
        width: 100% !important;
        max-width: 280px !important;
    }
}

@media (max-width: 480px) {
    .t-submit[type="submit"],
    .t-form__submit[type="submit"],
    .t-btn[type="submit"] {
        padding: 12px 24px !important;
        font-size: 14px !important;
        min-height: 46px !important;
    }
}

/* Специфические стили для попапа BF502N */
.t702__wrapper[data-form-uid="BF502N"] .t-submit[type="submit"] {
    margin-top: 20px !important;
    font-size: 17px !important;
    padding: 18px 45px !important;
}

/* Эффект градиентной обводки */
.t-submit[type="submit"]::after,
.t-form__submit[type="submit"]::after,
.t-btn[type="submit"]::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-amber), var(--primary-sapphire));
    border-radius: 52px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.t-submit[type="submit"]:hover::after,
.t-form__submit[type="submit"]:hover::after,
.t-btn[type="submit"]:hover::after {
    opacity: 1;
}

/* Эффект частиц при клике */
@keyframes particleSubmit {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(1);
        opacity: 0;
    }
}

.t-submit[type="submit"]:active .particle,
.t-form__submit[type="submit"]:active .particle,
.t-btn[type="submit"]:active .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--white);
    border-radius: 50%;
    animation: particleSubmit 0.6s ease-out;
}

/* Дополнительный эффект для призыва к действию */
.t-submit[type="submit"].highlight-cta,
.t-form__submit[type="submit"].highlight-cta,
.t-btn[type="submit"].highlight-cta {
    animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(237, 137, 54, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(237, 137, 54, 0.6);
    }
}

/* ===== ИСПРАВЛЕНИЕ ДЛЯ БЛОКА ПАРТНЕРОВ ===== */
.uc-partners .t-records,
#rec1334989651 .t-records,
.uc-partners .t-records__wrap,
#rec1334989651 .t-records__wrap {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 30px !important;
}

/* Конкретно для элементов внутри блока партнеров */
.uc-partners .t-records__item,
#rec1334989651 .t-records__item,
.uc-partners .t-records__col,
#rec1334989651 .t-records__col {
    display: flex !important;
    flex: 0 0 auto !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 10px !important;
}

/* Для изображений логотипов */
.uc-partners .t-records__image,
#rec1334989651 .t-records__image,
.uc-partners .t-records__image-wrapper,
#rec1334989651 .t-records__image-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 80px !important;
}

.uc-partners .t-records__image img,
#rec1334989651 .t-records__image img {
    max-height: 60px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.3s ease;
}

.uc-partners .t-records__image img:hover,
#rec1334989651 .t-records__image img:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

/* Переопределяем возможные конфликтующие стили */
.uc-partners * {
    flex-direction: row !important;
}

/* Убираем возможные вертикальные отступы */
.uc-partners .t-records__item + .t-records__item,
#rec1334989651 .t-records__item + .t-records__item {
    margin-top: 0 !important;
}

/* Адаптивность */
@media (max-width: 768px) {
    .uc-partners .t-records,
    #rec1334989651 .t-records {
        gap: 20px !important;
    }
    
    .uc-partners .t-records__image,
    #rec1334989651 .t-records__image {
        height: 60px !important;
    }
    
    .uc-partners .t-records__image img,
    #rec1334989651 .t-records__image img {
        max-height: 50px !important;
    }
}

@media (max-width: 480px) {
    .uc-partners .t-records,
    #rec1334989651 .t-records {
        gap: 15px !important;
    }
    
    .uc-partners .t-records__image,
    #rec1334989651 .t-records__image {
        height: 50px !important;
    }
    
    .uc-partners .t-records__image img,
    #rec1334989651 .t-records__image img {
        max-height: 40px !important;
    }
}

/* Стили для блока новостей uc-news на Тильде - ОБНОВЛЕННЫЙ ЗАГОЛОВОК */
.uc-news * {
    box-sizing: border-box;
}

.uc-news {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    font-family: 'TildaSans', Arial, sans-serif;
    overflow: hidden;
}

.uc-news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #ED8936 50%, transparent 100%);
    opacity: 0.3;
}

/* Декоративные элементы */
.uc-news-decoration {
    position: absolute;
    border-radius: 50% 30% 70% 40% / 40% 60% 30% 70%;
    background: rgba(237, 137, 54, 0.03);
    filter: blur(50px);
    z-index: 1;
}

.uc-news-dec-1 {
    width: 350px;
    height: 350px;
    top: -150px;
    left: -100px;
    animation: uc-news-float 25s ease-in-out infinite;
}

.uc-news-dec-2 {
    width: 250px;
    height: 250px;
    bottom: -100px;
    right: -80px;
    background: rgba(26, 43, 74, 0.02);
    animation: uc-news-float 20s ease-in-out infinite reverse;
}

@keyframes uc-news-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        border-radius: 50% 30% 70% 40% / 40% 60% 30% 70%;
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    66% {
        transform: translateY(15px) rotate(240deg);
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

/* Контейнер блока новостей */
.uc-news .t1004 {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ОБНОВЛЕННЫЙ ЗАГОЛОВОК В СТИЛЕ PETROVPRODUCT */
.uc-news .t-section__container {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.uc-news .t-section__title {
    color: #1a2b4a !important;
    font-size: 48px !important;
    font-weight: 700 !important;
    margin-bottom: 30px !important;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

/* Основное подчеркивание как на сайте */
.uc-news .t-section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ED8936, #FFA357);
    border-radius: 2px;
}

/* Дополнительные декоративные линии */
.uc-news .t-section__title::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: rgba(237, 137, 54, 0.3);
    border-radius: 1px;
}

/* Акцентный элемент в стиле PetrovProduct */
.uc-news .uc-news-title-accent {
    position: relative;
    display: inline-block;
}

.uc-news .uc-news-title-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(237, 137, 54, 0.15);
    z-index: -1;
    border-radius: 6px;
    transform: skewX(-15deg);
}

/* Подзаголовок если нужен */
.uc-news .t-section__descr {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Улучшенные оранжевые метки разделов */
.uc-news .t-feed__post-label-wrapper {
    position: absolute;
    top: 12px !important;
    left: 12px !important;
    z-index: 3;
}

.uc-news .t-feed__post-label {
    background: rgba(255, 163, 87, 0.85) !important;
    padding: 4px 10px !important;
    border-radius: 12px !important;
    box-shadow: 0 3px 12px rgba(255, 163, 87, 0.25) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.uc-news .t-feed__post-tag {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 9px !important;
    text-transform: uppercase;
    letter-spacing: 0.8px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Переключатели категорий */
.uc-news .t-feed__parts-switch-wrapper {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.uc-news .t-feed__parts-switch-btn {
    border: 2px solid #1a2b4a;
    border-radius: 30px;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: 0;
    position: relative;
    overflow: hidden;
}

.uc-news .t-feed__parts-switch-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2b4a, #2c5282);
    transition: left 0.4s ease;
    z-index: 1;
    border-radius: 28px;
}

.uc-news .t-feed__parts-switch-btn.t-active::before {
    left: 0;
}

.uc-news .t-feed__parts-switch-btn a {
    color: #1a2b4a;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 32px;
    display: block;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.uc-news .t-feed__parts-switch-btn.t-active a {
    color: #ffffff;
}

.uc-news .t-feed__parts-switch-btn:hover:not(.t-active) {
    background: rgba(26, 43, 74, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(26, 43, 74, 0.15);
}

.uc-news .t-feed__parts-switch-btn.t-active {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(26, 43, 74, 0.25);
    border-color: #1a2b4a;
}

/* Контейнер слайдера */
.uc-news .t-slds__container {
    position: relative;
    padding: 30px 0;
}

/* Карточки новостей */
.uc-news .t-feed__post {
    padding: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: uc-news-fadeInUp 0.6s ease forwards;
}

.uc-news .t-feed__post:nth-child(1) { animation-delay: 0.1s; }
.uc-news .t-feed__post:nth-child(2) { animation-delay: 0.2s; }
.uc-news .t-feed__post:nth-child(3) { animation-delay: 0.3s; }

@keyframes uc-news-fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.uc-news .t-feed__slider-grid__post-wrapper {
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(237, 137, 54, 0.15);
    height: 100%;
}

.uc-news .t-feed__slider-grid__post-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #FFA357, #FFB074);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.uc-news .t-feed__slider-grid__post-wrapper:hover::before {
    transform: scaleX(1);
}

.uc-news .t-feed__slider-grid__post-wrapper:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Изображение */
.uc-news .t-feed__post-imgwrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    height: 240px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.uc-news .t-feed__post-bgimg {
    transition: transform 0.6s ease;
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #f8f9fa;
}

.uc-news .t-feed__post-bgimg[data-original*=".svg"],
.uc-news .t-feed__post-bgimg[style*=".svg"] {
    background-size: auto 60% !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.uc-news .t-feed__post:hover .t-feed__post-bgimg {
    transform: scale(1.05);
}

/* Контент карточки */
.uc-news .t-feed__slider-grid__wrapper {
    padding: 25px;
    background: #ffffff;
    position: relative;
}

.uc-news .t-feed__post-title {
    color: #1a2b4a;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.2em;
}

.uc-news .t-feed__post:hover .t-feed__post-title {
    color: #FFA357;
}

.uc-news .t-feed__post-descr {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.5em;
}

.uc-news .t-feed__post-parts-date-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(237, 137, 54, 0.2);
}

.uc-news .t-feed__post-date {
    color: #999;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Стрелки слайдера */
.uc-news .t-slds__arrow {
    background: #1a2b4a !important;
    border: 2px solid #1a2b4a;
    border-radius: 50%;
    width: 60px !important;
    height: 60px !important;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(26, 43, 74, 0.3);
}

.uc-news .t-slds__arrow:hover {
    background: #FFA357 !important;
    border-color: #FFA357;
    transform: scale(1.1);
}

.uc-news .t-slds__arrow_body {
    width: 14px !important;
}

.uc-news .t-slds__arrow polyline {
    stroke: #ffffff;
    stroke-width: 3;
}

/* Попап */
.uc-news .t-feed__post-popup {
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(10px);
    padding: 20px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.uc-news .t-feed__post-popup__cover-wrapper {
    background: #ffffff !important;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(237, 137, 54, 0.2);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

/* Заголовок в попапе */
.uc-news .t-feed__post-popup__title {
    color: #1a2b4a !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin-bottom: 20px !important;
    text-align: left;
    padding: 40px 40px 0 40px;
    position: relative;
    padding-bottom: 15px;
}

.uc-news .t-feed__post-popup__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 40px;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ED8936, #FFA357);
    border-radius: 2px;
}

/* Изображение в попапе */
.uc-news .t-feed__post-popup__imgwrapper {
    border-radius: 15px;
    margin: 20px 40px;
    height: auto;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.uc-news .t-feed__post-popup__img {
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    width: 100%;
    height: 300px;
    background-color: #f8f9fa;
}

.uc-news .t-feed__post-popup__img[data-original*=".svg"],
.uc-news .t-feed__post-popup__img[style*=".svg"] {
    background-size: auto 50% !important;
}

/* Контент попапа */
.uc-news .t-feed__post-popup__content {
    padding: 0 40px 40px 40px;
    background: transparent !important;
}

.uc-news .t-feed__post-popup__descr {
    color: #4a5568 !important;
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    margin-bottom: 25px !important;
    text-align: left;
}

.uc-news .t-feed__post-popup__date {
    color: #FFA357 !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px !important;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 163, 87, 0.1);
    border-radius: 15px;
}

/* Кнопка закрытия попапа */
.uc-news .t-feed__post-popup__close {
    background: #1a2b4a !important;
    border-radius: 50%;
    width: 50px !important;
    height: 50px !important;
    top: 20px !important;
    right: 20px !important;
    transition: all 0.3s ease;
    border: 2px solid #1a2b4a;
    box-shadow: 0 4px 15px rgba(26, 43, 74, 0.3);
    z-index: 10001;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.uc-news .t-feed__post-popup__close:hover {
    background: #FFA357 !important;
    border-color: #FFA357;
    transform: scale(1.1);
}

.uc-news .t-feed__post-popup__close-icon {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: bold;
    line-height: 1;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .uc-news {
        padding: 100px 0;
    }
    
    .uc-news .t-section__title {
        font-size: 42px !important;
    }
    
    .uc-news .t-feed__post-popup__title {
        font-size: 1.8rem !important;
        padding: 30px 30px 0 30px;
    }
    
    .uc-news .t-feed__post-popup__imgwrapper {
        margin: 15px 30px;
    }
    
    .uc-news .t-feed__post-popup__img {
        height: 250px;
    }
    
    .uc-news .t-feed__post-popup__content {
        padding: 0 30px 30px 30px;
    }
    
    .uc-news-decoration {
        display: none;
    }
}

@media (max-width: 768px) {
    .uc-news {
        padding: 80px 0;
    }
    
    .uc-news .t-section__title {
        font-size: 36px !important;
        margin-bottom: 25px !important;
        padding-bottom: 15px;
    }
    
    .uc-news .t-section__title::after {
        width: 60px;
        height: 3px;
    }
    
    .uc-news .t-section__title::before {
        width: 90px;
    }
    
    .uc-news .t-feed__parts-switch-btn a {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .uc-news .t-feed__post-imgwrapper {
        height: 200px;
    }
    
    .uc-news .t-feed__slider-grid__wrapper {
        padding: 20px;
    }
    
    .uc-news .t-slds__arrow {
        width: 50px !important;
        height: 50px !important;
    }
    
    .uc-news .t-feed__post-popup__cover-wrapper {
        margin: 10px;
        border-radius: 20px;
    }
    
    .uc-news .t-feed__post-popup__title {
        font-size: 1.5rem !important;
        padding: 25px 25px 0 25px;
    }
    
    .uc-news .t-feed__post-popup__title::after {
        left: 25px;
        width: 50px;
    }
    
    .uc-news .t-feed__post-popup__imgwrapper {
        margin: 15px 25px;
    }
    
    .uc-news .t-feed__post-popup__img {
        height: 200px;
    }
    
    .uc-news .t-feed__post-popup__content {
        padding: 0 25px 25px 25px;
    }
}

@media (max-width: 480px) {
    .uc-news {
        padding: 60px 0;
    }
    
    .uc-news .t-section__title {
        font-size: 32px !important;
        padding-bottom: 12px;
    }
    
    .uc-news .t-section__title::after {
        width: 50px;
        height: 2px;
    }
    
    .uc-news .t-section__title::before {
        width: 70px;
        bottom: -6px;
    }
    
    .uc-news .t-feed__parts-switch-btn {
        flex: 1;
        min-width: 140px;
    }
    
    .uc-news .t-feed__parts-switch-btn a {
        padding: 10px 15px;
        font-size: 13px;
        text-align: center;
    }
    
    .uc-news .t-feed__post-imgwrapper {
        height: 180px;
    }
    
    .uc-news .t-feed__slider-grid__wrapper {
        padding: 15px;
    }
    
    .uc-news .t-feed__post-title {
        font-size: 1.2rem;
    }
    
    .uc-news .t-feed__post-descr {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }
    
    .uc-news .t-feed__post-popup__title {
        font-size: 1.3rem !important;
        padding: 20px 20px 0 20px;
    }
    
    .uc-news .t-feed__post-popup__title::after {
        left: 20px;
        width: 40px;
    }
    
    .uc-news .t-feed__post-popup__imgwrapper {
        margin: 10px 20px;
    }
    
    .uc-news .t-feed__post-popup__img {
        height: 180px;
    }
    
    .uc-news .t-feed__post-popup__content {
        padding: 0 20px 20px 20px;
    }
    
    .uc-news .t-feed__post-popup__descr {
        font-size: 1rem !important;
    }
}

/* СТИЛИ ДЛЯ БЛОКА ОБРАТНОЙ СВЯЗИ В СМЕШАННОМ СТИЛЕ */

/* Основной блок формы */
#rec1480710161,
.uc-obrat {
    position: relative;
    padding: 60px 0 100px 0 !important;
    margin: 0 !important;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%) !important;
    font-family: 'TildaSans', Arial, sans-serif !important;
    overflow: hidden !important;
}

/* Блок с заголовком (который выше формы) */
#rec1480829941 {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%) !important;
    padding: 80px 0 0 0 !important;
    margin: 0 !important;
}

/* Скрываем стандартный заголовок Tilda в форме */
#rec1480710161 .t-section__descr,
.uc-obrat .t-section__descr {
    display: none !important;
}

/* Декоративные элементы для обоих блоков */
#rec1480710161::before,
#rec1480829941::before,
.uc-obrat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #ED8936 50%, transparent 100%);
    opacity: 0.3;
}

.uc-obrat-decoration {
    position: absolute;
    border-radius: 50% 30% 70% 40% / 40% 60% 30% 70%;
    background: rgba(237, 137, 54, 0.05);
    filter: blur(50px);
    z-index: 1;
}

.uc-obrat-dec-1 {
    width: 350px;
    height: 350px;
    top: 10%;
    left: -100px;
    animation: uc-float 25s ease-in-out infinite;
}

.uc-obrat-dec-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    right: -100px;
    background: rgba(26, 43, 74, 0.03);
    animation: uc-float 22s ease-in-out infinite reverse;
}

/* КАСТОМНЫЙ ЗАГОЛОВОК - ДЕЛАЕМ ЕГО ВИДИМЫМ */
.uc-obrat-header {
    text-align: center;
    margin-bottom: 0 !important;
    max-width: 800px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 20px !important;
    opacity: 1 !important;
    transform: none !important;
}

.uc-obrat-pretitle {
    color: #ED8936;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.uc-obrat-pretitle::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #ED8936;
    border-radius: 2px;
}

.uc-obrat-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a2b4a;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(26, 43, 74, 0.1);
}

.uc-obrat-highlight {
    color: #ED8936;
    position: relative;
    display: inline-block;
}

.uc-obrat-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(237, 137, 54, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.uc-obrat-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ИСПРАВЛЕНИЕ ЦЕНТРИРОВАНИЯ ФОРМЫ */
#rec1480710161 .t-container,
.uc-obrat .t-container {
    position: relative;
    z-index: 2;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: block !important;
}

/* ПЕРЕОПРЕДЕЛЯЕМ СЕТКУ TILDA ДЛЯ ЦЕНТРИРОВАНИЯ */
#rec1480710161 .t-col.t-col_8.t-prefix_2,
.uc-obrat .t-col.t-col_8.t-prefix_2 {
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    max-width: 800px !important; /* Увеличиваем максимальную ширину */
    float: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: flex !important;
    justify-content: center !important;
}

/* ФОРМА - ЦЕНТРИРОВАНИЕ И ПРАВИЛЬНАЯ ШИРИНА */
#rec1480710161 .t-form,
.uc-obrat .t-form {
    background: white !important;
    backdrop-filter: blur(10px);
    border-radius: 20px !important;
    padding: 50px 40px !important;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.05) !important;
    border: none !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    width: 100% !important;
    max-width: 800px !important; /* Увеличиваем ширину формы */
    margin: 0 auto !important;
    display: block !important;
}

/* Сброс стилей Tilda для лучшего контроля */
#rec1480710161 .t-form__inputsbox,
.uc-obrat .t-form__inputsbox {
    width: 100% !important;
    max-width: none !important;
}

/* Стили полей формы */
#rec1480710161 .t-input-title,
.uc-obrat .t-input-title {
    color: #1a2b4a !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    margin-bottom: 10px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#rec1480710161 .t-input,
.uc-obrat .t-input {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 2px solid rgba(226, 232, 240, 0.8) !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    font-size: 16px !important;
    color: #1a2b4a !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    width: 100% !important;
}

#rec1480710161 .t-input:focus,
.uc-obrat .t-input:focus {
    border-color: #ED8936 !important;
    box-shadow: 
        0 0 0 3px rgba(237, 137, 54, 0.15),
        0 5px 15px rgba(237, 137, 54, 0.1) !important;
    outline: none !important;
    transform: translateY(-2px);
    background: white !important;
}

/* Кнопка отправки */
#rec1480710161 .t-submit,
.uc-obrat .t-submit {
    background: linear-gradient(135deg, #ED8936, #F6AD55) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 18px 45px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    color: white !important;
    box-shadow: 
        0 5px 20px rgba(237, 137, 54, 0.3),
        0 2px 10px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: block !important;
    margin: 30px auto 0 auto !important;
    width: auto !important;
}

#rec1480710161 .t-submit:hover,
.uc-obrat .t-submit:hover {
    transform: translateY(-3px) !important;
    box-shadow: 
        0 10px 30px rgba(237, 137, 54, 0.4),
        0 5px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Анимации */
@keyframes uc-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        border-radius: 50% 30% 70% 40% / 40% 60% 30% 70%;
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    66% {
        transform: translateY(15px) rotate(240deg);
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

/* ДОПОЛНИТЕЛЬНЫЕ ИСПРАВЛЕНИЯ ДЛЯ ЦЕНТРИРОВАНИЯ */
#rec1480710161 .t678 {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
}

#rec1480710161 .t-section__container {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
}

/* Адаптивность */
@media (max-width: 1024px) {
    #rec1480710161,
    .uc-obrat {
        padding: 40px 0 80px 0 !important;
    }
    
    #rec1480829941 {
        padding: 60px 0 0 0 !important;
    }
    
    #rec1480710161 .t-form,
    .uc-obrat .t-form {
        padding: 40px 30px !important;
        max-width: 700px !important;
    }
    
    .uc-obrat-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    #rec1480710161,
    .uc-obrat {
        padding: 30px 0 60px 0 !important;
    }
    
    #rec1480829941 {
        padding: 40px 0 0 0 !important;
    }
    
    #rec1480710161 .t-form,
    .uc-obrat .t-form {
        padding: 30px 20px !important;
        border-radius: 16px !important;
        margin: 0 20px !important;
        max-width: calc(100% - 40px) !important;
    }
    
    #rec1480710161 .t-input,
    .uc-obrat .t-input {
        padding: 14px 16px !important;
    }
    
    .uc-obrat-title {
        font-size: 32px;
    }
    
    .uc-obrat-pretitle {
        font-size: 14px;
    }
    
    .uc-obrat-dec-1, .uc-obrat-dec-2 {
        display: none;
    }
}

@media (max-width: 480px) {
    #rec1480710161,
    .uc-obrat {
        padding: 20px 0 40px 0 !important;
    }
    
    #rec1480829941 {
        padding: 30px 0 0 0 !important;
    }
    
    #rec1480710161 .t-form,
    .uc-obrat .t-form {
        padding: 25px 15px !important;
        border-radius: 12px !important;
        margin: 0 15px !important;
        max-width: calc(100% - 30px) !important;
    }
    
    #rec1480710161 .t-submit,
    .uc-obrat .t-submit {
        padding: 16px 30px !important;
        width: 100% !important;
    }
    
    .uc-obrat-title {
        font-size: 28px;
    }
    
    .uc-obrat-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }
}

/* СИЛЬНЫЕ ПРАВИЛА ДЛЯ ПЕРЕОПРЕДЕЛЕНИЯ СТИЛЕЙ TILDA */
#rec1480710161 .t-col.t-col_8 {
    width: 100% !important;
    flex: 0 0 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

#rec1480710161 .t-prefix_2 {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

/* ===== СВЕТЛЫЕ ХЛЕБНЫЕ КРОШКИ В СТИЛЕ ЛОГОТИПА ПЕТРОВ ПРОДУКТ ===== */
.uc-breadcrumbs {
    font-family: 'TildaSans', Arial, sans-serif !important;
    padding: 25px 0 !important;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%) !important;
    position: relative;
    overflow: hidden;
    margin-bottom: 0 !important;
    border-bottom: 1px solid rgba(237, 137, 54, 0.2);
}

/* Фоновый узор в стиле логотипа */
.uc-breadcrumbs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Световые эффекты как в лого */
        radial-gradient(circle at 20% 30%, rgba(237, 137, 54, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 43, 74, 0.02) 0%, transparent 50%),
        /* Геометрический паттерн */
        linear-gradient(45deg, transparent 45%, rgba(237, 137, 54, 0.01) 50%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, rgba(237, 137, 54, 0.01) 50%, transparent 55%);
    opacity: 0.6;
    z-index: 1;
}

.uc-breadcrumbs * {
    box-sizing: border-box !important;
    position: relative;
    z-index: 3;
}

/* Контейнер хлебных крошек */
.uc-breadcrumbs .t-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    position: relative;
}

/* Список хлебных крошек - выравнивание по левому краю */
.uc-breadcrumbs .t758__list {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    justify-content: flex-start !important;
}

/* Элементы списка */
.uc-breadcrumbs .t758__list_item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

/* Квадратные кнопки-ссылки в стиле логотипа */
.uc-breadcrumbs .t-menu__link-item {
    color: var(--primary-sapphire) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    background: var(--white) !important;
    border: 1px solid rgba(237, 137, 54, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 2px 8px rgba(26, 43, 74, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

/* Световой эффект как в лого */
.uc-breadcrumbs .t-menu__link-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(237, 137, 54, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.uc-breadcrumbs .t-menu__link-item:hover {
    color: var(--primary-sapphire) !important;
    background: rgba(237, 137, 54, 0.1) !important;
    border-color: rgba(237, 137, 54, 0.5) !important;
    transform: translateY(-2px);
    box-shadow: 
        0 4px 15px rgba(237, 137, 54, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.uc-breadcrumbs .t-menu__link-item:hover::before {
    opacity: 1;
}

/* Активный элемент с улыбкой как в лого */
.uc-breadcrumbs .t758__link-item_active {
    color: var(--primary-sapphire) !important;
    font-weight: 700 !important;
    padding: 10px 16px !important;
    background: linear-gradient(135deg, 
        rgba(237, 137, 54, 0.15) 0%, 
        rgba(237, 137, 54, 0.25) 100%) !important;
    border-radius: 8px !important;
    border: 1px solid rgba(237, 137, 54, 0.4) !important;
    display: inline-flex !important;
    align-items: center !important;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 3px 12px rgba(237, 137, 54, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

/* Улыбка под активным элементом */
.uc-breadcrumbs .t758__link-item_active::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-amber) 20%, 
        var(--accent-honey) 50%, 
        var(--accent-amber) 80%, 
        transparent 100%);
    border-radius: 2px;
    opacity: 0.8;
}

/* Разделитель в стиле логотипа */
.uc-breadcrumbs .t758__breadcrumb-divider {
    color: var(--accent-amber) !important;
    font-weight: 700 !important;
    opacity: 0.7;
    padding: 0 6px;
    font-size: 16px;
}

/* Иконки с эффектом как в лого */
.uc-breadcrumbs .t-menu__link-item .t-icon,
.uc-breadcrumbs .t758__link-item_active .t-icon {
    margin-right: 8px;
    color: var(--accent-amber) !important;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.uc-breadcrumbs .t-menu__link-item:hover .t-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Декоративный элемент в стиле логотипа */
.uc-breadcrumbs .breadcrumbs-logo-decoration {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Мини-логотип - светлая версия */
.breadcrumbs-mini-logo {
    width: 24px;
    height: 24px;
    background: var(--white);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 2px 6px rgba(26, 43, 74, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.8),
        0 0 0 1px rgba(237, 137, 54, 0.2);
}

.breadcrumbs-mini-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(237, 137, 54, 0.1) 0%, transparent 50%);
}

.breadcrumbs-mini-letters {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 1px;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: var(--primary-sapphire);
}

.breadcrumbs-mini-letters span:last-child {
    color: var(--accent-amber);
}

.breadcrumbs-mini-smile {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 2px;
    background: var(--accent-amber);
    border-radius: 1px;
    opacity: 0.8;
}

/* Декоративная линия в стиле лого */
.uc-breadcrumbs::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(237, 137, 54, 0.3) 20%, 
        rgba(237, 137, 54, 0.5) 50%, 
        rgba(237, 137, 54, 0.3) 80%, 
        transparent 100%);
    opacity: 0.3;
    border-radius: 1px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .uc-breadcrumbs {
        padding: 20px 0 !important;
    }
    
    .uc-breadcrumbs .t-container {
        padding: 0 16px !important;
    }
    
    .uc-breadcrumbs .t-menu__link-item,
    .uc-breadcrumbs .t758__link-item_active {
        font-size: 13px !important;
        padding: 8px 12px !important;
    }
    
    .uc-breadcrumbs .t758__list {
        gap: 6px !important;
    }
    
    .uc-breadcrumbs .breadcrumbs-logo-decoration {
        display: none;
    }
}

@media (max-width: 480px) {
    .uc-breadcrumbs {
        padding: 16px 0 !important;
    }
    
    .uc-breadcrumbs .t-container {
        padding: 0 12px !important;
    }
    
    .uc-breadcrumbs .t-menu__link-item,
    .uc-breadcrumbs .t758__link-item_active {
        font-size: 12px !important;
        padding: 6px 10px !important;
    }
    
    .uc-breadcrumbs .t758__list {
        gap: 4px !important;
    }
    
    .uc-breadcrumbs .t758__breadcrumb-divider {
        font-size: 14px !important;
        padding: 0 4px;
    }
    
    .uc-breadcrumbs::after {
        left: 12px;
        right: 12px;
    }
}