﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.tabs-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    margin: 20px 0;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid #eaeaea;
    background: #f8f8f8;
}

.tab {
    padding: 12px 20px;
    cursor: pointer;
    font-weight: bold;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    color: #555;
    font-size: 14px;
}

    .tab.active {
        border-bottom: 3px solid var(--primary-color);
        color: var(--primary-color);
        background: white;
    }

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

.tab-content {
    display: none;
    padding: 20px;
    line-height: 1.6;
    min-height: 200px;
}

    .tab-content.active {
        display: block;
    }

/* Стили для контента который будет из БД */
.content-placeholder {
    color: #666;
    font-style: italic;
}

.features-list {
    list-style-type: none;
}

    .features-list li {
        margin-bottom: 8px;
        padding-left: 20px;
        position: relative;
    }

        .features-list li:before {
            content: "✓";
            color: #007600;
            position: absolute;
            left: 0;
        }

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

    .specs-table td {
        padding: 8px 12px;
        border-bottom: 1px solid #eaeaea;
    }

    .specs-table tr:last-child td {
        border-bottom: none;
    }

    .specs-table td:first-child {
        font-weight: bold;
        width: 30%;
        color: #555;
    }

.review {
    border-bottom: 1px solid #eaeaea;
    padding: 15px 0;
}

    .review:last-child {
        border-bottom: none;
    }

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.review-author {
    font-weight: bold;
    color: #0F1111;
}

.review-date {
    color: #565959;
    font-size: 14px;
}

.review-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: #0F1111;
}

.stars {
    color: #FFA41C;
    margin: 5px 0;
}

@media (max-width: 768px) {
    .tabs-header {
        flex-wrap: wrap;
    }

    .tab {
        flex: 1;
        min-width: 120px;
        text-align: center;
        padding: 10px 15px;
        font-size: 13px;
    }

    .tab-content {
        padding: 15px;
    }
}
