/* ===== VCARVE PRODUCT DESCRIPTION STYLES ===== */

.vcarve-full-width-description {
    width: 100%;
}

/* Version switcher */
.vcarve-version-switcher {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 30px 20px 0;
    background: #f8f8f8;
}

.vcarve-version-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 32px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 180px;
}

.vcarve-version-btn:hover {
    border-color: #fc8400;
    color: #fc8400;
}

.vcarve-version-btn.active {
    border-color: #fc8400;
    background: #fc8400;
    color: #fff;
}

.vcarve-version-btn.active .vcarve-version-price {
    color: #fff;
}

.vcarve-version-price {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

/* Buy bar */
.vcarve-buy-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1250px;
    margin: 0 auto;
    padding: 24px 20px;
    background: #f8f8f8;
}

.vcarve-logo {
    height: 48px;
    width: auto;
    flex-shrink: 0;
}

.vcarve-buy-info {
    flex: 1;
}

.vcarve-buy-tagline {
    font-size: 15px;
    color: #555;
    margin: 0 0 4px;
}

.vcarve-buy-price {
    font-size: 18px;
    color: #222;
    margin: 0;
}

.btn-vcarve-buy {
    background-color: #fc8400;
    color: #fff !important;
    padding: 14px 32px;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    display: inline-block;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-vcarve-buy:hover {
    background-color: #d97000;
}

@media (max-width: 768px) {
    .vcarve-version-switcher {
        flex-direction: column;
        align-items: center;
    }

    .vcarve-version-btn {
        width: 100%;
        max-width: 320px;
    }

    .vcarve-buy-bar {
        flex-direction: column;
        text-align: center;
    }

    .btn-vcarve-buy {
        width: 100%;
        text-align: center;
    }
}

/* Comparison section */
.comparison-section {
    background: #f8f8f8;
    padding: 50px 20px;
}

.comparison-container {
    max-width: 1250px;
    margin: 0 auto;
}

.comparison-content {
    text-align: center;
    margin-bottom: 32px;
}

.comparison-content h2 {
    font-size: 26px;
    font-weight: bold;
    color: #000;
    margin-bottom: 16px;
}

.comparison-content p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 10px;
}

.comparison-table {
    display: flex;
    justify-content: center;
}

.comparison-table table {
    border-collapse: collapse;
    width: 100%;
    max-width: 700px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 12px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #222;
}

.comparison-table th {
    background: #fc8400;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.comparison-table th:first-child {
    background: #fc8400;
}

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

.comparison-table tr:hover td {
    background: #fff8f0;
}

@media (max-width: 768px) {
    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
        font-size: 13px;
    }
}
