/* Базовые стили */
:root {
    --primary: #E67E22;
    --primary-dark: #D35400;
    --secondary: #F39C12;
    --accent: #FFD700;
    --light: #FFF9E6;
    --dark: #2C3E50;
    --text: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
    --radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    font-family: 'Rubik', sans-serif;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Навигация */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--dark);
}

.logo-tagline {
    font-size: 12px;
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
}

.nav-phone:hover {
    background-color: var(--primary-dark);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
}

/* Герой секция */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--light) 0%, rgba(255, 249, 230, 0.8) 100%);
    overflow: hidden;
    margin-top: 80px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 48px;
    color: var(--dark);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Статистика */
.stats {
    padding: 80px 0;
    background-color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--light) 0%, rgba(255, 249, 230, 0.5) 100%);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.stat-number {
    display: block;
    font-family: 'Rubik', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--dark);
    font-weight: 500;
}

/* Философия */
.about {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-content {
    padding: 20px;
}

.about-text {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
}

/* Продукция */
.products {
    padding: 100px 0;
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image img {
    /* width: 100%; */
    height: 100%;
    /* object-fit: cover; */
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 30px;
}

.product-title {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 10px;
}

.product-desc {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
}

.product-price {
    font-family: 'Rubik', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Преимущества */
.features {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 32px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* Отзывы */
.testimonials {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: var(--radius);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: var(--primary);
    opacity: 0.3;
    font-family: 'Rubik', sans-serif;
}

.testimonial-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 500;
    color: var(--dark);
    font-size: 18px;
}

/* CTA */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background-color: var(--white);
    color: var(--primary);
}

.cta .btn-primary:hover {
    background-color: var(--light);
}

.cta .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* Футер */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Rubik', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-text {
    opacity: 0.8;
    line-height: 1.6;
    max-width: 300px;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contacts p {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.footer-link {
    display: block;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-link:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.6;
    font-size: 14px;
}

/* Адаптивность */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 10px 24px;
        font-size: 15px;
    }
}

/* Стили для внутренних страниц */
.page-content {
    padding: 120px 0 60px;
    margin-top: 80px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.page-section {
    margin-bottom: 80px;
}

/* Страница "Философия" */
.about-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.mission-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon i {
    font-size: 28px;
    color: var(--white);
}

.mission-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.history-image {
    position: relative;
}

.history-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.page-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 60px;
    border-radius: var(--radius);
    text-align: center;
    color: var(--white);
}

.page-cta h2 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 32px;
}

.page-cta p {
    margin-bottom: 30px;
    opacity: 0.9;
    font-size: 18px;
}

/* Страница "Продукция" */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.honey-types {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.honey-type-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.honey-type-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.honey-type-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.honey-type-card:hover .honey-type-image img {
    transform: scale(1.05);
}

.honey-type-content h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--dark);
}

.honey-type-content p {
    margin-bottom: 25px;
    color: var(--text);
    line-height: 1.7;
}

.honey-properties {
    list-style: none;
    margin-bottom: 25px;
}

.honey-properties li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.honey-properties i {
    color: var(--primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 24px;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

/* Страница "Блог" */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blog-post {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 14px;
}

.post-date i {
    margin-right: 5px;
}

.post-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
    line-height: 1.3;
}

.post-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-cta {
    background: linear-gradient(135deg, var(--light) 0%, rgba(255, 249, 230, 0.8) 100%);
    padding: 60px;
    border-radius: var(--radius);
    text-align: center;
}

.blog-cta h2 {
    color: var(--dark);
    margin-bottom: 15px;
}

.blog-cta p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 18px;
}

/* Страница "Контакты" */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 22px;
    color: var(--white);
}

.contact-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-content p {
    color: var(--text);
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-content a {
    color: var(--primary);
    font-weight: 500;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

.contact-messengers {
    margin-top: 40px;
}

.contact-messengers h3 {
    margin-bottom: 20px;
    color: var(--dark);
}

.messenger-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.messenger-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--white);
    transition: var(--transition);
}

.messenger-btn.telegram {
    background-color: #0088cc;
}

.messenger-btn.viber {
    background-color: #7360f2;
}

.messenger-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.contact-map {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.map-info {
    text-align: center;
}

.map-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark);
}

.map-info p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.map-features {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.map-features p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
}

.map-features i {
    color: var(--primary);
}

.contact-faq {
    margin: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: var(--white);
    border: none;
    text-align: left;
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    background: var(--white);
    display: none;
    border-top: 1px solid #eee;
}

.faq-answer p {
    padding: 25px 0;
    color: var(--text);
    line-height: 1.7;
}

.contact-cta {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius);
    color: var(--white);
}

.contact-cta h2 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 32px;
}

.contact-cta p {
    margin-bottom: 30px;
    opacity: 0.9;
    font-size: 18px;
}

.contact-cta .btn {
    font-size: 20px;
    padding: 18px 45px;
}

/* Адаптивность для внутренних страниц */
@media (max-width: 992px) {
    .history-grid,
    .contact-grid,
    .honey-type-card {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-content {
        padding: 100px 0 40px;
    }
}

@media (max-width: 768px) {
    .about-mission {
        grid-template-columns: 1fr;
    }
    
    .honey-type-card {
        padding: 25px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cta,
    .page-cta,
    .blog-cta {
        padding: 40px 20px;
    }
    
    .messenger-buttons {
        flex-direction: column;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 32px;
    }
    
    .mission-card,
    .blog-post {
        padding: 25px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
}

/* Новость про Сергея */
.news-featured {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.05) 0%, rgba(255, 215, 0, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.news-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
}

.news-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(230, 126, 34, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 126, 34, 0);
    }
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.news-content {
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(230, 126, 34, 0.1);
    position: relative;
}

.news-content::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(230, 126, 34, 0.1);
    border-radius: calc(var(--radius) + 5px);
    z-index: -1;
}

.news-source {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 50px;
    width: fit-content;
    border: 1px solid rgba(230, 126, 34, 0.2);
}

.news-source i {
    color: var(--primary);
    font-size: 18px;
}

.news-source span {
    font-weight: 700;
    color: var(--dark);
    font-size: 16px;
}

.news-title {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.news-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.news-excerpt {
    margin-bottom: 30px;
}

.news-excerpt p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 16px;
}

.news-excerpt p:first-child {
    font-weight: 500;
    color: var(--dark);
}

.news-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.news-actions .btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-image {
    position: relative;
}

.news-image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.news-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.news-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.news-image-wrapper:hover .news-img {
    transform: scale(1.05);
}

.news-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.9;
}

.news-image-caption i {
    font-size: 16px;
}

/* Декоративные элементы */
.news-featured::after {
    content: '🐝';
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 40px;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.news-content::before {
    content: '""';
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 80px;
    color: rgba(230, 126, 34, 0.1);
    font-family: serif;
    line-height: 1;
}

/* Адаптивность для новостного блока */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .news-title {
        font-size: 26px;
    }
    
    .news-img {
        height: 400px;
    }
    
    .news-badge {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 768px) {
    .news-content {
        padding: 30px;
    }
    
    .news-title {
        font-size: 24px;
    }
    
    .news-actions {
        flex-direction: column;
    }
    
    .news-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .news-image-wrapper {
        transform: none;
    }
}

@media (max-width: 480px) {
    .news-featured {
        padding: 60px 0;
    }
    
    .news-content {
        padding: 25px;
    }
    
    .news-title {
        font-size: 22px;
    }
    
    .news-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 20px;
        width: fit-content;
    }
}

/* Обновления для главной страницы - карточки продуктов */
.product-card {
    position: relative;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(230, 126, 34, 0.3);
}

.product-properties {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
}

.property {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.property i {
    color: var(--primary);
    width: 16px;
    text-align: center;
}

/* Стили для страницы "Философия" */
.philosophy-intro {
    margin: 40px 0 60px;
}

.philosophy-quote {
    position: relative;
    padding: 40px;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.05) 0%, rgba(255, 215, 0, 0.03) 100%);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.philosophy-quote i.fa-quote-left {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 30px;
    color: rgba(230, 126, 34, 0.2);
}

.quote-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--dark);
    margin: 0 0 20px 40px;
    font-style: italic;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 40px;
}

.author-line {
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.quote-author span {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
}

.journey-content h2 {
    margin-bottom: 25px;
}

.journey-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text);
}

.journey-image {
    position: relative;
}

.journey-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.principle-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(230, 126, 34, 0.1);
    transition: var(--transition);
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.principle-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.principle-icon i {
    font-size: 28px;
    color: var(--white);
}

.principle-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.principle-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
}

/* Стили для страницы "Ассортимент" */
.products-detail {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.product-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(230, 126, 34, 0.1);
}

.product-detail-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.product-detail-image img {
    width: 100%;
    /* height: 400px; */
    /* object-fit: cover; */
    transition: transform 0.6s ease;
}

.product-detail-image:hover img {
    transform: scale(1.05);
}

.product-season {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.product-detail-content h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(230, 126, 34, 0.2);
}

.product-characteristics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(230, 126, 34, 0.05);
    border-radius: var(--radius);
}

.characteristic {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.characteristic i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.product-description,
.product-benefits,
.product-usage {
    margin-bottom: 30px;
}

.product-description h3,
.product-benefits h3,
.product-usage h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-description h3::before,
.product-benefits h3::before,
.product-usage h3::before {
    content: '';
    width: 30px;
    height: 3px;
    background: var(--primary);
    display: block;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: var(--text);
    line-height: 1.6;
}

.benefits-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary);
    font-size: 16px;
}

.selection-guide {
    margin: 80px 0;
}

.guide-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.guide-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary);
    transition: var(--transition);
}

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.guide-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-icon i {
    font-size: 24px;
    color: var(--white);
}

.guide-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.guide-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
}

/* Адаптивность */
@media (max-width: 992px) {
    .journey-grid,
    .product-detail-card {
        grid-template-columns: 1fr;
    }
    
    .product-detail-image img {
        height: 300px;
    }
    
    .quote-text {
        font-size: 18px;
        margin-left: 0;
    }
    
    .quote-author {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .philosophy-quote {
        padding: 25px;
    }
    
    .product-detail-card {
        padding: 25px;
    }
    
    .product-detail-content h2 {
        font-size: 26px;
    }
    
    .product-characteristics {
        grid-template-columns: 1fr;
    }
    
    .guide-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .principle-card,
    .process-step {
        padding: 20px;
    }
    
    .product-season {
        top: 10px;
        right: 10px;
        font-size: 12px;
        padding: 5px 15px;
    }
    
    .benefits-list li {
        padding-left: 25px;
        font-size: 14px;
    }
}

/* Стили для страниц статей */
.article-header {
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 30px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 14px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-title {
    font-size: 40px;
    color: var(--dark);
    margin-bottom: 30px;
    line-height: 1.2;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--dark);
}

.author-title {
    font-size: 14px;
    color: var(--text-light);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-image-featured {
    margin: 40px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.featured-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-caption {
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 10px 20px;
    font-size: 14px;
    text-align: center;
}

.article-body {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
}

.article-body h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--dark);
}

.article-body h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--dark);
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul {
    margin: 20px 0;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-image-inline {
    margin: 30px 0;
    text-align: center;
}

.inline-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-tip {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: var(--radius);
    margin: 30px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.tip-icon {
    background: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tip-content {
    flex: 1;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 50px 0;
    padding: 20px;
    background: rgba(230, 126, 34, 0.05);
    border-radius: var(--radius);
}

.tag-label {
    font-weight: 600;
    color: var(--dark);
}

.tag {
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-buttons span {
    color: var(--text-light);
    font-size: 14px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.share-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Адаптивность для статей */
@media (max-width: 768px) {
    .article-title {
        font-size: 32px;
    }
    
    .article-body {
        font-size: 16px;
    }
    
    .article-body h2 {
        font-size: 28px;
    }
    
    .article-body h3 {
        font-size: 22px;
    }
    
    .featured-img {
        height: 300px;
    }
    
    .article-navigation {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 28px;
    }
    
    .article-tip {
        flex-direction: column;
        text-align: center;
    }
    
    .tag {
        font-size: 12px;
        padding: 4px 12px;
    }
}

/* Стили для кнопки копирования ссылки */
#copyLink {
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
    margin: 0;
}

#copyLink i {
    font-size: 16px;
}

#copyLink:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Анимация успешного копирования */
@keyframes copied {
    0% { background-color: var(--primary); }
    50% { background-color: #2ecc71; }
    100% { background-color: var(--primary); }
}

/* Стили для таблиц в статьях и на страницах */
.article-body table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
}

.article-body table caption {
    caption-side: top;
    text-align: left;
    font-weight: 600;
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 15px;
    padding: 0 10px;
}

.article-body thead {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.article-body th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    letter-spacing: 0.5px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.article-body th:last-child {
    border-right: none;
}

.article-body tbody tr {
    border-bottom: 1px solid rgba(230, 126, 34, 0.1);
    transition: var(--transition);
}

.article-body tbody tr:hover {
    background-color: rgba(230, 126, 34, 0.05);
}

.article-body tbody tr:last-child {
    border-bottom: none;
}

.article-body td {
    padding: 16px 15px;
    text-align: left;
    color: var(--text);
    border-right: 1px solid rgba(230, 126, 34, 0.1);
}

.article-body td:last-child {
    border-right: none;
}

.article-body tbody tr:nth-child(even) {
    background-color: rgba(255, 249, 230, 0.3);
}

.article-body tbody tr:nth-child(even):hover {
    background-color: rgba(230, 126, 34, 0.07);
}

/* Специальные классы для таблиц сравнения */
.table-comparison {
    border: 2px solid rgba(230, 126, 34, 0.2);
}

.table-comparison th {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.table-highlight {
    border-left: 4px solid var(--primary);
}

.table-highlight td:first-child {
    font-weight: 600;
    color: var(--dark);
}

/* Стили для таблиц с характеристиками */
.table-features th,
.table-features td {
    text-align: center;
}

.table-features .feature-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    line-height: 24px;
    margin-right: 8px;
}

/* Таблицы на мобильных устройствах */
@media (max-width: 768px) {
    .article-body table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .article-body th,
    .article-body td {
        padding: 12px 10px;
        font-size: 14px;
        min-width: 120px;
    }
    
    .article-body table caption {
        font-size: 16px;
    }
}

/* Таблицы в других разделах (не в статьях) */
.table-container {
    margin: 40px 0;
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.general-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: var(--white);
}

.general-table thead {
    background: var(--light);
}

.general-table th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 2px solid var(--primary);
    font-family: 'Rubik', sans-serif;
}

.general-table td {
    padding: 18px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text);
}

.general-table tbody tr:last-child td {
    border-bottom: none;
}

.general-table tbody tr:hover {
    background-color: rgba(230, 126, 34, 0.05);
}

/* Стили для ячеек с особым содержанием */
.price-cell {
    font-weight: 600;
    color: var(--primary);
    font-size: 18px;
    font-family: 'Rubik', sans-serif;
}

.highlight-cell {
    background-color: rgba(255, 215, 0, 0.2);
    font-weight: 600;
}

.best-value {
    position: relative;
}

.best-value::before {
    content: '★';
    color: var(--accent);
    margin-right: 5px;
}

/* Таблицы с чередованием цветов */
.table-zebra tbody tr:nth-child(odd) {
    background-color: rgba(255, 249, 230, 0.5);
}

.table-zebra tbody tr:nth-child(even) {
    background-color: var(--white);
}

/* Градиентные заголовки таблиц */
.table-gradient thead {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

/* Компактные таблицы */
.table-compact th,
.table-compact td {
    padding: 12px 15px;
}

.table-compact th {
    font-size: 14px;
}

.table-compact td {
    font-size: 14px;
}

/* Таблицы с обводкой */
.table-bordered {
    border: 1px solid rgba(230, 126, 34, 0.3);
}

.table-bordered th,
.table-bordered td {
    border: 1px solid rgba(230, 126, 34, 0.2);
}

/* Адаптивность для очень маленьких экранов */
@media (max-width: 480px) {
    .article-body th,
    .article-body td {
        padding: 10px 8px;
        font-size: 13px;
        min-width: 100px;
    }
    
    .general-table th,
    .general-table td {
        padding: 12px 8px;
        font-size: 13px;
    }
    
    .price-cell {
        font-size: 16px;
    }
}

/* Анимация появления таблиц */
@keyframes tableFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-body table {
    animation: tableFadeIn 0.6s ease-out;
}

/* Стили для футера таблицы */
.article-body tfoot {
    background-color: rgba(230, 126, 34, 0.1);
    font-weight: 600;
}

.article-body tfoot td {
    color: var(--dark);
    border-top: 2px solid var(--primary);
}

/* Стили для выделенной статьи в блоге */
.featured-article {
    position: relative;
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.05) 0%, rgba(255, 249, 230, 0.8) 100%);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.15);
    grid-column: 1 / -1; /* Занимает всю ширину сетки */
}

.post-badge {
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(230, 126, 34, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 126, 34, 0);
    }
}

.featured-article .post-title {
    font-size: 28px;
    color: var(--dark);
    border-left: 4px solid var(--primary);
    padding-left: 15px;
    margin: 15px 0;
}

.featured-article .post-excerpt {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 25px;
}

.post-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(230, 126, 34, 0.2);
}

.featured-article .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.featured-article .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
}

.featured-article .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

/* Адаптивность */
@media (max-width: 768px) {
    .featured-article .post-title {
        font-size: 24px;
    }
    
    .featured-article .post-excerpt {
        font-size: 16px;
    }
    
    .post-actions {
        flex-direction: column;
    }
    
    .post-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .post-badge {
        margin-left: 10px;
        font-size: 11px;
        padding: 3px 10px;
    }
    
    .featured-article .post-title {
        font-size: 22px;
        padding-left: 12px;
    }
}