/* --- Tabs structure --- */
.pixelio-more-info .tabs {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0 0 20px 0;
}

/* --- Tab links --- */
.pixelio-more-info .tab-link {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 2rem;
    width: 100%;
    border-bottom: none;
    margin-right: 0;
    background: #f5f5f5;
    transition: background 0.3s ease, color 0.3s ease;
}

.pixelio-more-info .tab-link.current {
    background: #2F57A3;
    color: #fff;
    font-weight: bold;
}

/* --- Content display --- */
.pixelio-more-info .tab-content {
    display: none;
}

.pixelio-more-info .tab-content.current {
    display: block;
}

/* --- Hidden helper class --- */
.pixelio-more-info .d-none {
    display: none;
}

/* --- Description text --- */
.description-text {
    display: flex;
    justify-content: center;
}

.description-text-content {
    max-width: 500px;
    text-align: start;
    font-size: 1.2em;
}

/* --- Product attributes table --- */
.product-attributes {
    width: 100%;
    border-collapse: collapse;
}

.product-attributes th,
.product-attributes td {
    padding: 5px 10px;
}

.product-attributes th {
    text-align: left;
    background: #f9f9f9;
}
