/* Стили для страницы продукта */
.product-detail-section {
    padding: 120px 0 80px;
}

.product-detail {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-main {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.product-images {
    flex: 1;
}

.main-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-gallery {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    flex: 1;
}

.product-info h1 {
    font-size: 32px;
    color: #0066cc;
    margin-bottom: 20px;
}

.product-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.product-price {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.product-price h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    font-size: 18px;
}

.price-value {
    font-weight: bold;
    color: #333;
}

.product-actions {
    display: flex;
    gap: 15px;
}

.secondary-button {
    display: inline-block;
    background-color: #f8f9fa;
    color: #0066cc;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    border: 2px solid #0066cc;
    cursor: pointer;
}

.secondary-button:hover {
    background-color: #e9ecef;
}

.product-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-description-full h2 {
    color: #0066cc;
    margin-bottom: 20px;
}

.product-description-full h3 {
    color: #333;
    margin: 25px 0 15px;
}

.product-description-full p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-description-full ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.product-description-full li {
    margin-bottom: 10px;
}

.product-video {
    margin: 40px 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    justify-content: center;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.usage-examples {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.example-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    height: 100%;
}

.example-item h4 {
    color: #0066cc;
    margin-bottom: 10px;
}

.video-gallery {
    margin: 40px 0;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.video-item {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
}

.video-item iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.video-item p {
    font-size: 14px;
    text-align: center;
}

/* Адаптивность */
@media (max-width: 768px) {
    .product-main {
        flex-direction: column;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .examples-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }
}
/* Стили для кнопки назад */
.back-button-container {
    margin-bottom: 30px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    background-color: #0066cc;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
    font-size: 16px;
}

.back-button:hover {
    background-color: #0055aa;
}

/* Адаптивность для кнопки */
@media (max-width: 768px) {
    .back-button {
        padding: 8px 16px;
        font-size: 14px;
    }
}
/* Стили для новых элементов */
.full-width-video {
    width: 100%;
    margin: 30px 0;
}

.full-width-video video {
    width: 60%;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .full-width-video video {
        width: 90%;
    }
}

/* Стили для слайдера */
.presentation-section {
    width: 100%;
    margin: 40px 0;
    text-align: center;
    position: relative;
}

.presentation-slider {
    width: 80%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 70vh;
    max-height: 600px;
}

.slides-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
}

.slide {
    min-width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    width: 80%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 100;
    margin-top: 0;
}

.slider-btn {
    background-color: rgba(0, 102, 204, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 70%;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1px;
}

.slider-btn:hover {
    background-color: rgba(0, 102, 204, 1);
    transform: scale(1.1);
}

.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 100;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.indicator.active {
    background-color: #0066cc;
    transform: scale(1.2);
}

.indicator:hover {
    transform: scale(1.2);
}
.product-article {
    width: 100%;
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    line-height: 1.6;
}
.full-width-banner {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    position: relative;
}

.full-width-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Стили для секции сравнения */
.comparison-section {
    width: 100%;
    margin: 60px 0;
    padding: 40px 0;
    background-color: #f8f9fa;
}

.comparison-section h2 {
    text-align: center;
    color: #0066cc;
    margin-bottom: 30px;
    font-size: 32px;
}

.comparison-table-container {
    width: 100%;
    overflow-x: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: white;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.comparison-table th {
    background-color: #0066cc;
    color: white;
    font-weight: 600;
    position: sticky;
    top: 0;
}

.comparison-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.comparison-table tr:hover {
    background-color: #e9ecef;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #495057;
    background-color: #f1f3f5;
}

.positive {
    color: #28a745;
    font-weight: bold;
    text-align: center;
}

.negative {
    color: #dc3545;
    text-align: center;
}

/* Адаптивность для таблицы */
@media (max-width: 992px) {
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .comparison-section {
        padding: 30px 0;
    }
    
    .comparison-section h2 {
        font-size: 26px;
    }
    
    .comparison-table {
        font-size: 12px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px;
    }
}
/* Добавьте классы к ячейкам таблицы в HTML */
.comparison-table .feature-column {
    width: 35%;
}

.comparison-table .cc1-column {
    width: 32.5%;
}

.comparison-table .cc1pro-column {
    width: 32.5%;
}
/* Стили для карточек характеристик */


.spec-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}



@media (max-width: 576px) {
    .specs-cards {
        grid-template-columns: 1fr;
    }
    
    .spec-card {
        padding: 15px;
    }
}
/* Стили для карточек характеристик */
.specs-container {
    width: 100%;
    margin: 40px 0;
    text-align: center;
}

.specs-container h3 {
    color: #0066cc;
    margin-bottom: 30px;
    font-size: 28px;
}

.specs-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.spec-card {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 140px;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.spec-icon {
    font-size: 32px;
    margin-right: 15px;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.spec-info {
    flex-grow: 1;
    text-align: left;
}

.spec-info h4 {
    margin: 0 0 8px 0;
    color: #0066cc;
    font-size: 18px;
    font-weight: 600;
}

.spec-info p {
    margin: 0;
    color: #495057;
    font-weight: 500;
    line-height: 1.5;
    font-size: 14px;
}

/* Адаптивность для карточек характеристик */
@media (max-width: 768px) {
    .specs-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .spec-card {
        padding: 15px;
        min-height: 120px;
    }
    
    .spec-icon {
        font-size: 28px;
        margin-right: 12px;
        width: 40px;
    }
    
    .spec-info h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .spec-info p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .specs-cards {
        grid-template-columns: 1fr;
    }
    
    .spec-card {
        min-height: auto;
    }
    
    .specs-container h3 {
        font-size: 24px;
    }
}
/* Стили для секций с особенностями */
.feature-section {
    width: 100%;
    margin: 60px 0;
    padding: 40px 0;
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-media {
    flex: 1;
    display: flex;
    justify-content: center;
}

.feature-media img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-media video {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    color: #0066cc;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.feature-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #495057;
}

.feature-text strong {
    color: #0066cc;
    font-weight: 600;
}

/* Адаптивность для секций с особенностями */
@media (max-width: 992px) {
    .feature-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .feature-text {
        text-align: center;
    }
    
    .feature-text h3 {
        font-size: 24px;
    }
    
    .feature-text p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .feature-section {
        margin: 40px 0;
        padding: 30px 0;
    }
    
    .feature-text h3 {
        font-size: 22px;
    }
    
    .feature-text p {
        font-size: 15px;
    }
}
/* Стили для карточек с изображениями */
.example-item {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.example-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.example-item-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.example-item h4 {
    color: #0066cc;
    margin-bottom: 10px;
    margin-top: 0;
}

.example-item p {
    margin-bottom: 0;
    flex-grow: 1;
}
