/* Стили для блока производственного процесса */
.production-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
}

.processes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translateY(0);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.process-img {
    height: 200px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.process-card:hover .process-img {
    transform: scale(1.05);
}

.process-content {
    padding: 20px;
    flex-grow: 1;
}

.process-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.process-content p {
    color: var(--dark);
    line-height: 1.6;
}

/* Мобильный слайдер (скрыт по умолчанию) */
.process-slider-mobile {
    display: none;
    margin-top: 30px;
}

.slider-container {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-item {
    min-width: 100%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.slider-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.slider-content {
    padding: 20px;
}

.slider-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.slider-content p {
    color: var(--dark);
    line-height: 1.6;
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 0 10px;
}

.slider-prev, .slider-next {
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-prev:hover, .slider-next:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Адаптивные стили */
@media (max-width: 1200px) {
    .processes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .production-section {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .process-slider-desktop {
        display: none;
    }
    
    .process-slider-mobile {
        display: block;
    }
    
    .production-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .production-section {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .slider-content {
        padding: 15px;
    }
    
    .slider-content h3 {
        font-size: 1.2rem;
    }
    
    .slider-content p {
        font-size: 0.9rem;
    }
}

