:root {
  /* Триадная цветовая схема */
  --primary: #00d1b2;
  --primary-dark: #00b89c;
  --primary-light: #5eead4;
  --secondary: #d100b8;
  --secondary-dark: #b8009e;
  --secondary-light: #f182e6;
  --tertiary: #b8d100;
  --tertiary-dark: #9eb800;
  --tertiary-light: #e8f182;
  
  /* Нейтральные цвета */
  --dark: #222222;
  --gray-dark: #444444;
  --gray: #888888;
  --gray-light: #cccccc;
  --light: #f7f7f7;
  --white: #ffffff;
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-dark));
  --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  --gradient-tertiary: linear-gradient(135deg, var(--tertiary), var(--tertiary-light));
  --gradient-dark: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
  
  /* Тени */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
  
  /* Переходы */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Скругления */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Шрифты */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Source Sans Pro', sans-serif;
  
  /* Размеры */
  --header-height: 70px;
  --container-max-width: 1200px;
}

/* Базовые стили */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

/* Кнопки */
.button {
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-medium);
}

.button:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button.is-primary {
  background: var(--gradient-primary);
  border: none;
}

.button.is-primary:hover {
  box-shadow: 0 4px 15px rgba(0, 209, 178, 0.4);
  transform: translateY(-2px);
}

.button.is-light {
  border: 1px solid var(--primary);
  color: var(--primary);
}

.button.is-light:hover {
  background-color: var(--primary-light);
  color: var(--dark);
}

/* Утилиты */
.has-text-white {
  color: var(--white) !important;
}

.has-text-centered {
  text-align: center !important;
}

.mb-5 {
  margin-bottom: 1.5rem !important;
}

.mb-6 {
  margin-bottom: 2rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mt-6 {
  margin-top: 2rem !important;
}

/* Навигация */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
}

.navbar-item {
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
}

.navbar-item::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: all var(--transition-medium);
  transform: translateX(-50%);
}

.navbar-item:hover::after {
  width: 30px;
}

.navbar-burger {
  height: 3.25rem;
  width: 3.25rem;
}

.navbar-burger span {
  height: 2px;
  width: 20px;
  left: calc(50% - 10px);
  background-color: var(--dark);
}

.navbar-burger:hover {
  background-color: transparent;
}

/* Hero секция */
.hero {
  position: relative;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
  z-index: 1;
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: 5rem 1.5rem;
}

.hero .title,
.hero .subtitle {
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.animate-title {
  opacity: 0;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* О нас секция */
.about-section {
  position: relative;
  padding: 5rem 1.5rem;
  background-color: var(--white);
}

.about-section .content {
  padding: 2rem 0;
}

.image-container {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-medium);
}

.image-container:hover {
  transform: scale(1.02);
}

.image-container img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}

.image-container:hover img {
  transform: scale(1.05);
}

/* Услуги секция */
.services-section {
  padding: 5rem 1.5rem;
  background-color: var(--light);
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  background-color: var(--white);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  position: relative;
  overflow: hidden;
}

.card-image figure {
  margin: 0;
  width: 100%;
  text-align: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content .title {
  margin-top: 0;
  color: var(--dark);
}

.card-content p {
  color: var(--gray-dark);
}

/* Карусель */
.carousel-container {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  padding: 0 50px;
}

.carousel-content {
  display: flex;
  transition: transform var(--transition-slow);
}

.carousel-item {
  flex: 0 0 100%;
  padding: 0 15px;
}

@media screen and (min-width: 768px) {
  .carousel-item {
    flex: 0 0 50%;
  }
}

@media screen and (min-width: 1024px) {
  .carousel-item {
    flex: 0 0 33.333%;
  }
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border: none;
  border-radius: 50%;
  color: var(--primary);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 10;
  transition: all var(--transition-fast);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Внешние ресурсы */
.external-resources-section {
  padding: 5rem 1.5rem;
  background-color: var(--white);
}

/* Контакты секция */
.contact-section {
  padding: 5rem 1.5rem;
  background-color: var(--light);
}

.contact-section .card {
  height: 100%;
}

.map-container {
  height: 250px;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Формы */
.input,
.textarea {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  transition: all var(--transition-fast);
}

.input:focus,
.textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0, 209, 178, 0.25);
}

.label {
  color: var(--gray-dark);
  font-weight: 600;
}

/* Блог секция */
.blog-section {
  padding: 5rem 1.5rem;
  background-color: var(--white);
}

.blog-section .card-image {
  height: 200px;
}

.blog-section .subtitle {
  color: var(--gray);
  margin-bottom: 0.5rem;
}

/* События секция */
.events-section {
  padding: 5rem 1.5rem;
  background-color: var(--light);
}

.events-section .media {
  align-items: center;
}

.events-section .media-left {
  margin-right: 1.5rem;
}

.events-section .image {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

/* Карьера секция */
.careers-section {
  padding: 5rem 1.5rem;
  background-color: var(--white);
}

/* Медиа секция */
.media-section {
  padding: 5rem 1.5rem;
  background-color: var(--light);
}

/* Футер */
.footer {
  padding: 3rem 1.5rem;
  background-color: var(--dark);
  color: var(--white);
}

.footer .title {
  color: var(--white);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer a {
  color: var(--gray-light);
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: var(--primary);
}

.social-links a {
  margin-right: 10px;
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: var(--primary);
}

/* Success страница */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
}

.success-container {
  max-width: 600px;
  padding: 3rem;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.success-icon {
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* Privacy и Terms страницы */
.privacy-page,
.terms-page {
  padding-top: 100px;
  padding-bottom: 3rem;
}

.privacy-page .container,
.terms-page .container {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-page h1,
.terms-page h1 {
  margin-bottom: 2rem;
}

.privacy-page h2,
.terms-page h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

/* Куки уведомление */
#cookieConsent {
  transition: opacity var(--transition-medium);
}

#acceptCookies {
  transition: background-color var(--transition-fast);
}

#acceptCookies:hover {
  background-color: var(--primary-dark);
}

/* Анимация частиц */
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Медиа запросы для адаптивности */
@media screen and (max-width: 768px) {
  .columns {
    margin-left: 0;
    margin-right: 0;
  }
  
  .column {
    padding: 0.75rem;
  }
  
  .navbar-menu {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
  }
  
  .card {
    margin-bottom: 1.5rem;
  }
  
  .about-section .image-container {
    margin-top: 1.5rem;
  }
  
  .hero-body {
    padding: 3rem 1rem;
  }
  
  .section {
    padding: 3rem 1rem;
  }
  
  .footer {
    padding: 2rem 1rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  .hero-body {
    padding: 4rem 1.5rem;
  }
  
  .section {
    padding: 4rem 1.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    max-width: var(--container-max-width);
  }
}

/* Адаптивная типографика */
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
}

/* Анимации появления */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Дополнительные стили для ссылок "Читать далее" */
.button.is-primary.mt-3 {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.button.is-primary.mt-3::after {
  content: '→';
  margin-left: 5px;
  transition: transform var(--transition-fast);
  display: inline-block;
}

.button.is-primary.mt-3:hover::after {
  transform: translateX(5px);
}

.catalog-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
            color: rgb(39, 39, 39);
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            font-weight: 300;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .product-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }
        
        .product-image {
            width: 100%;
            height: 220px;
            background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
            position: relative;
            overflow: hidden;
        }
        
        .product-card:nth-child(1) .product-image {
            background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
        }
        
        .product-card:nth-child(2) .product-image {
            background: linear-gradient(45deg, #43e97b 0%, #38f9d7 100%);
        }
        
        .product-card:nth-child(3) .product-image {
            background: linear-gradient(45deg, #fa709a 0%, #fee140 100%);
        }
        
        .image-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            opacity: 0.3;
        }
        
        .product-content {
            padding: 2rem;
        }
        
        .product-name {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 0.5rem;
        }
        
        .product-description {
            color: #718096;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }
        
        .product-details {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .detail-tag {
            background: #edf2f7;
            color: #4a5568;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .price-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .price {
            font-size: 2rem;
            font-weight: 700;
            color: #2d3748;
        }
        
        .old-price {
            color: #a0aec0;
            text-decoration: line-through;
            font-size: 1.2rem;
            font-weight: 400;
        }
        
        .order-btn {
            width: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .order-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }
        
        .badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: #48bb78;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .nutrition-info {
            display: flex;
            justify-content: space-between;
            background: #f7fafc;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
        }
        
        .nutrition-item {
            text-align: center;
        }
        
        .nutrition-value {
            font-weight: 600;
            color: #2d3748;
            font-size: 1.1rem;
        }
        
        .nutrition-label {
            font-size: 0.8rem;
            color: #718096;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .catalog-section {
                padding: 0 1rem;
            }
        }